# 输入N n=int(input()) # 用列表存储数字,map函数将列表中字符串数字转变为整数 number=list(map(int,input().split(' '))) # sum函数求和 print(sum(number))