题解(禁止乱抄)
2024-07-15 18:37:14
发布于:浙江
8阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
    int a,b;
    cin>>a>>b;
    if (a<60&&b>=60 || b<60&&a>=60){
        cout<<'1';
    }else{
        cout<<'0';
    }
    return 0;
}
这里空空如也



有帮助,赞一个