N = int(input()) a = list(map(int, input().split())) ave = 0 for e in a : ave += e ave /= N for e in a : print(int(50 - (ave - e) / 2))