백준
백준 2908(python) →CODINGKOOºº
it 킹왕짱
2022. 8. 16. 19:26
728x90
코드
a,b=map(int,input().split())
a=str(a)[-1::-1]
b=str(b)[-1::-1]
if a>b:
print(a)
else:
print(b)
728x90
728x90