➽ Problem:-

https://www.hackerrank.com/challenges/simple-array-sum/problem

➽ Solution:-

a = int(input())

b = map(int,input().split())

print(sum(b))