a, b = map(int, input().split()) if a > b: print('>') elif a<b: print('<') else: print('==')
Python
BAEKJOON
codingtest
Post : 2021.12.11 04:21