Skip to content

Commit 5565a8d

Browse files
committed
[BOJ] 빠른 A+B/ 브론즈4/ 5분(∆) -m "https://www.acmicpc.net/problem/15552"
1 parent d2e1c77 commit 5565a8d

File tree

1 file changed

+8
-0
lines changed
  • learntosurf/Baekjoon/3_반복문

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# 내 풀이
2+
import sys
3+
4+
T = int(input())
5+
6+
for i in range(T):
7+
a, b = map(int, sys.stdin.readline().split())
8+
print(a+b)

0 commit comments

Comments
 (0)