4589: 逻辑与练习
[Creator : ]
Description
#include <iostream>
using namespace std;
int main()
{
int a, b, c;
cin >> a >> b >> c;
if ( )
cout << 1;
return 0;
}
Sample Input Copy
3 2 1
Sample Output Copy
1