백준 15552 파이썬 빠른 A + B

304호 하숙생·2022년 7월 19일
0
post-thumbnail


Solve

import sys

input = int(input())
for i in range(input):
    a, b = map(int, sys.stdin.readline().split())
    print(a + b)
profile
304호 하숙생의 코딩일기장

0개의 댓글