본문 바로가기
Python/CodeUp

1050 - 두 정수 입력받아 비교하기2

by GLOWWW 2021. 2. 18.

a, b = input().split(" ")
a = int(a)
b = int(b)
print("%d" %(a==b))

댓글