[SW][BEAKJOON]/[SW][BEAKJOON][반복문]
[BEAKJOON][반복문][10950][Python] A+B - 3
Gooing
2022. 3. 30. 23:55
반응형
PROBLEM
- Link
Approach to the problem
-
Code
# 첫줄에 Test 횟수 입력
# 그 다음 2개의 숫자 덧셈
T = int(input())
for i in range(T):
A,B = map(int,input().split())
print(A+B)
End
-
반응형