i = 0 sum = 0 howmany = int(input()) split_nums = input().split() for i in range(howmany): sum = sum + int(split_nums[i]) print(sum)