무니코딩/백준
1330번 : 두 수 비교하기 (Python3)
moonico
2022. 3. 3. 16:13
A,B=map(int,input().split())
if A>B :
print('>')
elif A<B :
print('<')
else :
print('==')