5 lines
86 B
Python
5 lines
86 B
Python
n = int(input())
|
|
sum = 1 - n
|
|
for _ in range(n):
|
|
sum += int(input())
|
|
print(sum) |