백준 1330번 두 수 비교하기 파이썬
2022.03.07 15:45
백준 1330번 두 수 비교하기 파이썬 코드이다.
a, b = input().split(' ')
a, b = int(a), int(b)
if a > b:
print(">")
elif a < b:
print("<")
else:
print("==")