#include<iostream>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
if(a<60)
{
if(b>=60&&c>=60) cout<<"1";
else cout<<"0";
}
else if(b<60)
{
if(a>=60&&c>=60) cout<<"1";
else cout<<"0";
}
else if(c<60)
{
if(a>=60&&b>=60) cout<<"1";
else cout<<"0";
}
return 0;
}
为什么有一个测试点过不了呢???