a>b或a>c,则输出1
#include <iostream> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; if ( ) cout << 1; return 0; }
5 3 4
1