Technic/Python
변수 Reverse 시키기
등촌동 꼬북이
2020. 11. 30. 03:08
변수[::-1]
a = input().split()
b = str(int(a[0][::-1]) + int(a[1][::-1]))
print(int(b[::-1]))