n = int(input()) l = [] for i in range(n): l.append(float(input())) s = str(sum(l)) print(s[0:-2] + "\n")