Search

66 백준_Python [10950] A+B -3

num = int(input()) for _ in range(num): a,b = map(int,input().split()) print(a+b)
Python
복사