N = int(input()) A = [int(input().split()) for x in range(N)] s = sum(A) / len(A) print(round(s, 1))