private static void Step5238()
 {
     Console.WriteLine();
     Console.WriteLine("5238");
     int[] in5238w = { 5, 4, 3, 0, 7, -11, 29 };
     int[] in5238h = { 5, 5, 5, 5, 0, 4, -2 };
     for (int i = 0; i < in5238w.Length; i++)
     {
         try
         {
             StringBuilder result = Lab06.Task5238(new StringBuilder(), in5238w[i], in5238h[i]);
             Console.WriteLine(result.ToString());
         }
         catch (Exception e)
         {
             Console.WriteLine(e.Message);
         }
     }
 }