n=int(input())
suma=0

for i in range(n):
   liczba=float(input())
   suma+=liczba
print(suma/n)