Scroll indicator done
728x90

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


n, m = map(int, input().split())
if n > m: print('>')
elif n < m: print('<')
else: print('==')
728x90

'BAEKJOON > Python' 카테고리의 다른 글

[B2480][주사위 세개][python]  (0) 2021.03.05
[B2420][사파리월드][python]  (0) 2021.03.05
[B1297][TV 크기][python]  (0) 2021.03.05
[B1212][8진수 2진수][python]  (0) 2021.03.04
[B17496][스타후르츠][python]  (0) 2021.03.04