백준풀이(Python)
[백준] 1330번 : 두 수 비교하기 (Python) - 단계별로 풀어보기
육지핑핑이
2023. 3. 23. 00:51
Python3 코드
A,B = map(int,input().split())
if A > B:
print('>')
elif A < B:
print('<')
else:
print('==')