dc = int(input()) data = [] for i in range(dc): data.append(int(input())) print(f"{(sum(data)/len(data)):.1f}")