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