티스토리

개발자의 취미 공장
검색하기내 프로필
프로그래밍/백준

15552 빠른 A+B

게으른구름 2018. 5. 26. 18:05
1
2
3
4
5
6
7
import sys
num = int(sys.stdin.readline())
for i in range(num):
    temp = sys.stdin.readline().rstrip()                                
    a = int(temp.split(' ')[0])
    b = int(temp.split(' ')[1])
    print(a+b)
Colored by Color Scripter
cs


저작자표시 비영리 변경금지 (새창열림)