728x90
반응형
단순 사칙연산 문제이다.
for _ in range(int(input())):
a, b = input().split()
res = int(str(int(a[::-1])+int(b[::-1]))[::-1])
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 7572번 간지(干支)(python) (0) | 2021.03.09 |
---|---|
백준 알고리즘 6318번 Box of Bricks(python) (0) | 2021.03.09 |
백준 알고리즘 6502번 동혁 피자(python) (0) | 2021.03.09 |
백준 알고리즘 6479번 Factorial Frequencies(python) (0) | 2021.03.09 |
백준 알고리즘 6367번 Color Me Less(python) (0) | 2021.03.09 |