import sys input=lambda:sys.stdin.readline().rstrip() N=int(input()) A=list(map(int,input().split())) print((100+sum(A)%N)//N)