Problem4590--逻辑或练习

4590: 逻辑或练习

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

a>ba>c,则输出1


#include <iostream>
using namespace std;
int main()
{
    int a, b, c;
    cin >> a >> b >> c;
    if (   )
        cout << 1;
    return 0;
}

Sample Input Copy

5 3 4

Sample Output Copy

1

Source/Category