Note

[codeup] 110. 관계연산자 2 본문

etc/Coding Test

[codeup] 110. 관계연산자 2

알 수 없는 사용자 2022. 1. 9. 22:38
728x90
a,b = map(int, input().split())
if a==b:
  print(1)
else:
  print(0)
Comments