[python] 백준 15552 빠른 A+B

rse·2022년 11월 24일
0

알고리즘

목록 보기
7/44
post-thumbnail
post-custom-banner

https://www.acmicpc.net/problem/15552

이번 문제에서는 input 말고 sys.stdin.readline 을 써서 입력을 받아보자.

import sys

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

profile
기록을 합시다

0개의 댓글