13 lines
219 B
Python
13 lines
219 B
Python
|
yu=int(input())
|
||
|
shu=int(input())
|
||
|
ying=int(input())
|
||
|
|
||
|
if yu<60 and shu>=60 and ying>=60:
|
||
|
print(1)
|
||
|
elif yu>=60 and shu<60 and ying>=60:
|
||
|
print(1)
|
||
|
elif yu>=60 and shu>=60 and ying<60:
|
||
|
print(1)
|
||
|
else:
|
||
|
print(0)
|