반응형
문제 정보
제출 코드
import sys
count = int(sys.stdin.readline().rstrip())
for i in range(0,count):
a, b = map(int,sys.stdin.readline().rstrip().split())
print(a+b)
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 2742번 Python (0) | 2021.10.03 |
---|---|
[백준 알고리즘] 2741번 Python (0) | 2021.10.03 |
[백준 알고리즘] 8393번 Python (0) | 2021.10.03 |
[백준 알고리즘] 10950번 Python (0) | 2021.10.03 |
[백준 알고리즘] 2739번 Python (0) | 2021.10.03 |
댓글