题解
2023-06-22 23:31:37
发布于:广东
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int x,y;
int main(){
cin>>x>>y;
if(x<60){
if(y>=60){
cout<<"1";
}else{
cout<<"0";
}
}else{
if(y<60){
cout<<"1";
}else{
cout<<"0";
}
}
return 0;
}
这里空空如也
有帮助,赞一个