백준 1330번: 두 수 비교하기 #Python

ColorlessDia·2024년 2월 4일

algorithm/baekjoon

목록 보기
17/813
A, B = map(int, input().split())

if A == B:
    print('==')
elif B < A:
    print('>')
elif A < B:
    print('<')

0개의 댓글