n = int(input())
a = list(map(float, input().split()))
s = 0
for i in range(n):
    s += a[i]
avg = s / n
print(f"{avg:.2f}")