N = gets.to_i Y = gets.split.map(&:to_i) S = Y.sum X = Y.map{|y| S - (N - 1) * y } puts X * ' '