보안을 그리다, 훈이

[Baekjoon/Python3] 15552번 빠른 A+B 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 15552번 빠른 A+B

HooNeee 2020. 12. 8. 16:27

[Baekjoon/Python3] 15552번 빠른 A+B

 

www.acmicpc.net/problem/15552

 

15552번: 빠른 A+B

첫 줄에 테스트케이스의 개수 T가 주어진다. T는 최대 1,000,000이다. 다음 T줄에는 각각 두 정수 A와 B가 주어진다. A와 B는 1 이상, 1,000 이하이다.

www.acmicpc.net

 

import sys
T = int(input())
for i in range(T):
    A, B = map(int, sys.stdin.readline().split())
    print(A + B)
Comments