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

 

 

 

 

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

'Baekjoon > python' 카테고리의 다른 글

[백준 2753번] 윤년  (0) 2022.04.13
[백준 9498번] 시험성적  (0) 2022.04.07
[백준 2588번] 곱셈  (0) 2022.04.07
[백준 10430번] 나머지  (0) 2022.04.07
[백준 18108번] 1998년생인 내가 태국에서는 2541년생?!  (0) 2022.04.07

+ Recent posts