N = gets.to_i L = N.times.map { gets.split.map(&:to_i) } L.each do |l| _, *d = l puts d.sort.reverse.join(' ') end