N=int(input(5))
suma = 0
for i in range (N):
      x = float(input())
      suma += x
wynik = suma / N
print(wynik)