N = int(input()) A = list(map(int, input().split(' '))) s = 0 for i in range(N): s = s + A[i] print(s/N)