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

[백준/파이썬] 28224번 Final Price

by 현장 2023. 6. 22.

-Code

res = 0

for _ in range(int(input())):
    res += int(input())
print(res)