N = int(input()) X = list(map(int, input().split())) A = sum(X) / len(X) for I in range(0, N): D = int(50 - (A - X[I]) / 2) print(D)