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