n, h = gets.split.map(&:to_i) t = gets.split.map(&:to_i) n.times do |i| t[i] += h end puts t.join(" ")