10952번 풀이 [Python]

sua·2022년 7월 1일
0

Baekjoon

목록 보기
71/161
post-thumbnail

문제


풀이

while True :
    a, b = map(int, input().split())
    
    if(a == 0 and b == 0) :
        break;
    else :
        print(a + b)
profile
가보자고

0개의 댓글