n = int(input()) x = list(map(int,input().split())) s = sum(x) for i in x: ans = (100*n-s+n*i)//(2*n) print(ans)