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