row, col = gets.split.map(&:to_i) puts row.times.map { gets.chomp }.join(' ').split.sort_by(&:to_i).each_slice(col).map { _1.join(' ') }