문제 : https://www.acmicpc.net/problem/15552
코드
import sys
num = int(sys.stdin.readline())
for _ in range(num):
a, b = map(int, sys.stdin.readline().split())
print(a + b)
'코딩테스트 > 백준 (python)' 카테고리의 다른 글
백준 / 2566번 / 최댓값 / python 파이썬 (0) | 2024.06.02 |
---|---|
백준 / 1157번 / 단어 공부 / python 파이썬 (0) | 2024.05.29 |
백준 / 1181번 / 단어 정렬 / python 파이썬 (0) | 2024.05.27 |
백준 / 11718번 / 그대로 출력하기 / python 파이썬 (0) | 2024.05.25 |
백준 / 5622번 / 다이얼 / python 파이썬 (0) | 2024.05.25 |