입력이 반복문일 때 사용 훨씬 빠르다고 함.
import sys
T = int(input()) #Test case for i in range(T): a,b = map(int, sys.stdin.readline().split()) print(a+b)