지나가던 개발자

[Python] 백준 1357번(뒤집힌 덧셈) 문제 풀이 본문

PS/Python

[Python] 백준 1357번(뒤집힌 덧셈) 문제 풀이

KwonYongHyeon 2022. 10. 21. 17:07

 

def rev(x):
    return int(x[::-1])
    
x, y = input().split(" ")
print(rev(str(rev(x)+rev(y))))
Comments