6 lines
85 B
Python
6 lines
85 B
Python
a = int(input())
|
|
b = input().split()
|
|
sum = 0
|
|
for c in b:
|
|
sum += int(c)
|
|
print(sum) |