mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
27 lines
311 B
C++
27 lines
311 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <ctime>
|
|
using namespace std;
|
|
int main(){
|
|
int a,b,c,d=0;
|
|
cin >>a>>b>>c;
|
|
if(a>=60){
|
|
d++;
|
|
}
|
|
if(b>=60){
|
|
d++;
|
|
}
|
|
if(c>=60){
|
|
d++;
|
|
}
|
|
if(d==2){
|
|
cout <<1;
|
|
}
|
|
else{
|
|
cout <<0;
|
|
}
|
|
return 0;
|
|
}
|