honey_pot

[python] 백준 4101번 본문

문제 풀이

[python] 백준 4101번

_tera_ 2021. 6. 6. 20:09

while True:
  a, b = map(int, input().split())
  if a > b:
    print("Yes")
  elif a==0 and b ==0:break
  else: print("No")

'문제 풀이' 카테고리의 다른 글

[python] 백준 9506번  (0) 2021.06.06
[python] 백준 2476번  (0) 2021.06.06
[python] 백준 2480번  (0) 2021.06.06
[python] 백준 2754번  (0) 2021.06.03
[python] 백준 10156번  (0) 2021.06.03
Comments