Files
kattis/whichisgreater.py
2022-05-13 21:35:25 +02:00

3 lines
61 B
Python

a, b = map(int, input().split(" "))
print(1 if a > b else 0)