Python/CodeUp
1057 - 참/거짓이 서로 같을 때에만 참 출력하기
GLOWWW
2021. 2. 19. 14:11
a, b = input().split(" ")
a = bool(int(a))
b = bool(int(b))
print(int(a == b))