N = int(input()) scores = list(map(int, input().split())) M = max(scores) new = [] for score in scores: new.append(score / M * 100) print(sum(new)/N)
sum(리스트명)