본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 32327번 Dusa And The Yobis

by 현장 2024. 11. 3.

-Code

res = int(input())

while True:
    try:
        d = int(input())

        if d >= res:
            break

        res += d

    except EOFError:
        break

print(res)