Note

[codeup] 109. 관계연산자 1 본문

etc/Coding Test

[codeup] 109. 관계연산자 1

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