题解
2025-03-04 20:19:29
发布于:广东
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int a, b;
cin >> a >> b;
if (a < 60 || b < 60){
if (a < 60 && b < 60){
cout << 0 << endl;
}
else {
cout << 1 << endl;
}
}
else {
cout << 0 << endl;
}
return 0;
}
```包对的
这里空空如也
有帮助,赞一个