728x90
반응형
input_value = raw_input()
first_value, second_value = input_value.split(" ")
reverse_first = first_value[2]+first_value[1]+first_value[0]
reverse_second = second_value[2]+second_value[1]+second_value[0]
if int(reverse_first) >= int(reverse_second):
print int(reverse_first)
else:
print int(reverse_second)
728x90
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 단계별로 풀기 7단계 문자열 사용하기 - 다이얼 (5622 문제) Python 2 답안 (0) | 2019.01.18 |
---|---|
백준 단계별로 풀기 7단계 문자열 사용하기 - 상수 (2908 문제) C언어 (0) | 2019.01.18 |
백준 단계별로 풀기 7단계 문자열 사용하기 - 문자열 반복 (2675 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 7단계 문자열 사용하기 - 알파벳 찾기 (10809 문제) Python 2 답안 (0) | 2019.01.17 |
백준 단계별로 풀기 7단계 문자열 사용하기 - 아스키 코드 (11654 문제) Python 2 답안 (0) | 2019.01.17 |