[BAEKJOON] 15552 : 빠른 A+B - python3 1 2 3 4 5 6 7 8 9 import sys n = int(input()) for i in range (0,n,1): a,b = map(int,sys.stdin.readline().split()) a = int(a) b = int(b) print(a+b) Colored by Color Scripter cs Study/BAEKJOON 2021.08.05