n = int(input()) arr = list(map(int, input().split())) m = max(arr) arr = [arr[i]/m*100 for i in range(n)] print(sum(arr)/n)