백준 2908번 상수 파이썬
2022.03.08 22:01
백준 2908번 상수 파이썬 코드이다.
a, b = input().split()
a = int(a[::-1])
b = int(b[::-1])
if a > b:
print(a)
else:
print(b)