private static void Step5448()
 {
     Console.WriteLine();
     Console.WriteLine("5448");
     String[] in5448s = { "#", "\\", "^", "*", "56" };
     int[]    in5448h = { 6, 3, 0, -2, -3 };
     for (int i = 0; i < in5448s.Length; i++)
     {
         try
         {
             StringBuilder result = Lab06.Task5448(new StringBuilder(), in5448s[i], in5448h[i]);
             Console.WriteLine(result.ToString());
         }
         catch (Exception e)
         {
             Console.WriteLine(e.Message);
         }
     }
 }