반응형

백준 1330번 두 수 비교하기 풀이 코드 | Python (파이썬)


풀이

map(int, input().split())로 a, b변수를 입력 받고 두 수를 비교하고 print()로 결과를 출력합니다.

코드

a, b = map(int, input().split())

if a > b:
    print(">")
elif a < b:
    print("<")
else:
    print("==")

문제 출처

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

반응형

+ Recent posts