본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#56 백준 파이썬 [1330] 두 수 비교하기

https://www.acmicpc.net/problem/1330   

 

 

#Solution

a,b = map(int, input().split())

if a < b: print('<')
elif a > b: print('>')
else: print('==')