백준 2908 - 상수 (파이썬)

Updated:

Answer

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

Categories:

Updated: