출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

이번 문제는 비교적 쉬웠다. 단순히 if 문으로 비교를 통해 print로 출력하면 끝이다

 

import sys
A, B = map(int, sys.stdin.readline().split())
if A > B:
print(">")
elif A < B:
print("<")
else:
print("==")