N = input() A = input() sum = 0 split_A = A.split() while len(split_A) >> 0 : num = int(split_A.pop(0)) sum = sum + num print (sum)