728x90
반응형
입력의 합을 출력해주면 된다. map을 사용해서 쉽게 풀자.
for i in range(int(input())):
print(sum(list(map(int, input().split()))))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10952번 A+B - 5(python) (0) | 2020.02.15 |
---|---|
백준 알고리즘 10951번 A+B - 4(python) (0) | 2020.02.15 |
백준 알고리즘 10872번 팩토리얼(python) (0) | 2020.02.15 |
백준 알고리즘 10871번 X보다 작은 수(python) (0) | 2020.02.15 |
백준 알고리즘 10870번 피보나치 수 5(python) (0) | 2020.02.15 |