Which is Greater?
This commit is contained in:
@@ -0,0 +1,3 @@
|
|||||||
|
a, b = map(int, input().split(" "))
|
||||||
|
|
||||||
|
print(1 if a > b else 0)
|
||||||
Reference in New Issue
Block a user
@@ -0,0 +1,3 @@
|
|||||||
|
a, b = map(int, input().split(" "))
|
||||||
|
|
||||||
|
print(1 if a > b else 0)
|
||||||