본문 바로가기

[SW][BEAKJOON]/[SW][BEAKJOON][반복문]

[BEAKJOON][반복문][15552][Python] 빠른 A+B

반응형

PROBLEM

  - Link

Approach to the problem

  - 

Code

import sys
 
T = int(input())

for i in range(T):
        a,b = map(int, sys.stdin.readline().split())
        print(a+b)

End

  - 

반응형