解题思路
2025-08-24 23:06:47
发布于:四川
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a;
cin>>b;
if(a<60){
if(b<=60){
cout<<0;
}else{
cout<<1;
}
}else{
if(b<=60){
cout<<1;
}else{
cout<<0;
}
}
return 0;
}
这里空空如也
有帮助,赞一个