Python/CodeUp
1050 - 두 정수 입력받아 비교하기2
GLOWWW
2021. 2. 18. 22:26
a, b = input().split(" ")
a = int(a)
b = int(b)
print("%d" %(a==b))