static void Main(string[] args)
 {
     Console.WriteLine(Progression.FindMissingProgression(new List <int> {
         1, 5, 7, 9, 11
     }));
     // Allow the user to close the application
     Console.ReadLine();
 }