[백준 알고리즘] 1330번 두 수 비교하기(Python3)
언어, 알고리즘 공부/백준2020. 2. 11. 16:52[백준 알고리즘] 1330번 두 수 비교하기(Python3)

a, b = input().split() if int(a) > int(b): print('>') elif int(a)

image