[백준] 1357번 : 뒤집힌 덧셈 - Python(파이썬)

강재원·2022년 10월 17일
0

[코딩테스트] Python

목록 보기
118/200



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

x,y=map(str,input().split())
s=str(int(x[::-1])+int(y[::-1]))
print(int(s[::-1]))
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글