n = int(input()) l = list(map(int,input().split())) ave = sum(l)/n for i in range(n): print(int(50+(l[i]-ave)/2))