백준 1330번| Python - 두 수 비교하기

bj1

풀이

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

comments powered by Disqus