Scroll indicator done
728x90

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


n, m = map(str, input().split())
n, m = int(n[::-1]), int(m[::-1]) # 문자열 reverse
print(max(m, n))

 

728x90

'BAEKJOON > Python' 카테고리의 다른 글

[B1181][단어 정렬][python]  (0) 2021.03.10
[B3052][나머지][python]  (0) 2021.03.10
[B2439][별 찍기 - 2][python]  (0) 2021.03.10
[B2475][검증수][python]  (0) 2021.03.10
[B1037][약수][python]  (0) 2021.03.09