728x90
반응형
입력이 '0 0'이 아니라면 입력의 합을 출력해준다.
while(True):
li = list(map(int, input().split()))
if sum(li) == 0:
break
print(sum(li))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10988번 팰린드롬인지 확인하기(python) (0) | 2020.02.15 |
---|---|
백준 알고리즘 10987번 모음의 개수(python) (0) | 2020.02.15 |
백준 알고리즘 10951번 A+B - 4(python) (0) | 2020.02.15 |
백준 알고리즘 10950번 A+B - 3(python) (0) | 2020.02.15 |
백준 알고리즘 10872번 팩토리얼(python) (0) | 2020.02.15 |