https://www.acmicpc.net/problem/10952
https://www.acmicpc.net/problem/10952


풀이
test_case = []

while True:
    temp_arr=[]
    a, b = map(int,input().split())
    if a==0 and b==0:
        break
    else:
        temp_arr.append(a)
        temp_arr.append(b)
        test_case.append(temp_arr)

for i in range(len(test_case)):
    print(test_case[i][0] + test_case[i][1])

 

+ Recent posts