题解
2024-12-09 19:15:30
发布于:上海
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int a,b,x=0;
int main(){
cin>>a>>b;
if(a<60){
x++;
}
if(b<60){
x++;
}
if(x==1){
cout<<1;
}else{
cout<<0;
}
return 0;
}
这里空空如也
有帮助,赞一个