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