728x90
반응형
단순 구현 문제이다.
for _ in range(int(input())):
a, b = input().split()
a, b = int(a[::-1]), int(b[::-1])
res = int(str(a+b)[::-1])
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 4084번 Viva la Diferencia(python) (0) | 2021.02.13 |
---|---|
백준 알고리즘 3507번 Automated Telephone Exchange(python) (0) | 2021.02.12 |
백준 알고리즘 3460번 이진수(python) (0) | 2021.02.12 |
백준 알고리즘 3058번 짝수를 찾아라(python) (0) | 2021.02.12 |
백준 알고리즘 3034번 앵그리 창영(python) (0) | 2021.02.12 |