提交时间:2025-12-26 14:43:10

运行 ID: 77723

#include <bits/stdc++.h> using namespace std; int main() { int chinese, math; cin >> chinese >> math; if ((chinese < 60 && math >= 60) || (chinese >= 60 && math < 60)) { cout << 1 << endl; } else { cout << 0 << endl; } return 0; }