Algorithm/BOJ
[백준/10950] A+B - 3 (with 파이썬)
Potato potage
2022. 10. 1. 15:09
반응형
✔ 문제
✔ 풀이
T = int(input())
for _ in range(T):
a, b = map(int, input().split())
print(a+b)
✔ 후기
(*ᴗ͈ˬᴗ͈)ꕤ*.゚
반응형