출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

 

간단한 문제이다. T의 숫자만큼 A,B를 뽑아서 더해주고 출력하면 되니 for문을 사용하면 된다

 

import sys

T = int(sys.stdin.readline())

for i in range(9):
	A, B = map(int, sys.stdin.readline().split())
	print(A+B)