Skip to content

Commit 07a6422

Browse files
authored
[BOJ] 11022 A+B -8 (B4)
1 parent 6eb5f19 commit 07a6422

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

김지호/6주차/260203.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
N = int(input())
2+
for _ in range(N):
3+
A,B = map(int,input().split(" "))
4+
print(A+B)
5+

0 commit comments

Comments
 (0)