n = int(input()) ans = 0 for _ in range(n): ans += float(input())*10**10 print("{:.10f}".format(round(ans/(10**10))))