본문 바로가기
Study/알고리즘

[백준 알고리즘] 15552번 Python

by Becoming a Hacker 2021. 10. 3.
반응형

문제 정보

 

제출 코드

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

댓글