Which is Greater?

This commit is contained in:
2022-05-11 23:32:29 +02:00
parent 7d132a16f3
commit 61a6fe1a32

3
whichisgreater.py Normal file
View File

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