언어, 알고리즘 공부/백준
[백준 알고리즘] 1330번 두 수 비교하기(Python3)
쿠몬e
2020. 2. 11. 16:52
<코드>
a, b = input().split()
if int(a) > int(b):
print('>')
elif int(a)<int(b):
print('<')
else:
print('==')
링크
반응형