반응형
🧑🏻💻 me
import sys
def sum_params(a,b):
return a+b
if __name__ == "__main__":
T = int(input())
for i, k in enumerate(range(T)):
a, b = map(int,input().split())
res = sum_params(a,b)
print('Case #{}: {}'.format(i+1, res))
🧑🏻💻 reference
import sys
input = sys.stdin.readline
t = int(input())
for i in range(t):
a, b = map(int,input().split())
print("Case #"+str(i+1)+": "+str(a+b))
반응형
'coding 📟 > coding test ⌨️' 카테고리의 다른 글
[Softeer] 나무공격 python (0) | 2024.09.27 |
---|---|
[Softeer] 8단 변속기 (0) | 2023.08.21 |
[Softeer] 금고털이 (0) | 2023.08.21 |
[Softeer] 근무 시간 (0) | 2023.08.20 |
댓글