3 lines
61 B
Python
3 lines
61 B
Python
a, b = map(int, input().split(" "))
|
|
|
|
print(1 if a > b else 0) |
a, b = map(int, input().split(" "))
|
|
|
|
print(1 if a > b else 0) |