백준 2908번 Python 풀이

Myeonggeun Shin·2025년 1월 9일

문제

백준 2908번
제목 : 상수


풀이

# Python3
a, b = map(int, input()[::-1].split())
print(max(a, b))

0개의 댓글