N, M = gets.split(" ").map{|s| s.to_i} W = gets.split(" ").map{|s| s.to_i} ball = W.sum.to_f / M.to_f ans = [] W.each{|w| ans << (w.to_f / ball).to_i } puts ans.map{|i| i.to_s}.join(" ")