반응형
SOLUTION
A,B = map(int, input().split())
if A>B:
print(">")
elif A<B:
print("<")
else:
print("==")
'코딩테스트 대비 > BOJ' 카테고리의 다른 글
[Baekjoon/Python] 2438번: 별 찍기 - 1 - 효과는 굉장했다! (0) | 2021.10.06 |
---|---|
[Baekjoon/Python] 9498번: 시험 성적 - 효과는 굉장했다! (0) | 2021.10.06 |
[Baekjoon/Python] 1008번: A/B - 효과는 굉장했다! (0) | 2021.10.05 |
[Baekjoon/Python] 11654번: 아스키코드 - 효과는 굉장했다! (0) | 2021.10.05 |
[Baekjoon/Python] 10998번: AxB - 효과는 굉장했다! (0) | 2021.10.05 |