def test_burnout()
   forest = [ [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [1, 2, 3, 4, 4] ]
   for i in 0..forest.length-1 do
      for j in 0..forest[i].length-1 do
         print burnout?(forest, i, j, 20), " "
      end
      print "\n"
   end
end

