백준

[백준] 1330번 : 두 수 비교하기 (Python) - 단계별로 풀어보기

by 윤 2023. 3. 22. 02:05
728x90

Python3 코드

A,B = map(int, input().split())

if(A>B):
    print(">")
elif(A<B):
    print("<")
else:
    print("==")