public static async Task Main()
 {
     try
     {
         await ExerciseFactory.ExerciseCreate("Curse_CSharpProgramming_FromNoviceToSpecialist.Exercises.Section9.Section9Exercise3").DoExercise();
     }
     catch (ArgumentException e)
     {
         Console.WriteLine(e.Message);
     }
 }