nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
python
6 months ago
259 B
0
Indexable
Never
# basic method of input output
# input N
n = int(input())
 
# input the array
arr = [int(x) for x in input().split()]
 
# initialize variable
summation = 0
 
# calculate sum
for x in arr:
    summation += x
     
# print answer
print(summation)

nord vpnnord vpn
Ad