본문 바로가기
백준문제/새싹

백준) 10952번 - python

by kiseno 2024. 2. 3.
728x90
반응형
SMALL
while True:
    a,b = map(int, input().split(" "))
    if a == 0 and b == 0:
        break
    else:
        print(a + b)
728x90
반응형
LIST

'백준문제 > 새싹' 카테고리의 다른 글

백준) 11654번 - python  (0) 2024.02.05
백준) 14681번 - python  (0) 2024.02.04
백준) 10872번 - python  (1) 2024.02.02
백준) 10871번 - python  (1) 2024.02.01
백준) 9086번 - python  (1) 2024.01.31