티스토리 뷰
https://www.acmicpc.net/problem/2908
import sys
A, B = map(int, sys.stdin.readline().split())
a = list(str(A))
b = list(str(B))
new_A = a[len(a)-1]
new_B = b[len(b)-1]
for i in range(len(a)-2, -1, -1):
new_A += a[i]
for i in range(len(b)-2, -1, -1):
new_B += b[i]
print(max(int(new_A), int(new_B)))
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 2941 : 크로아티아 알파벳 - Python (0) | 2020.03.27 |
---|---|
[백준] 5622 : 다이얼 - Python (0) | 2020.03.27 |
[백준] 1152 : 단어의 개수 - Python (0) | 2020.03.26 |
[백준] 1157 : 단어 공부 - Python (0) | 2020.03.26 |
[백준] 11720 : 숫자의 합 - Python (0) | 2020.03.26 |