// Start Main Menthod
        static void Main(string[] args)
        {
            // Create Vairable for class SentenceAnalyzer
            SentenceAnalyzer R = new SentenceAnalyzer();

            // Call run method from class
            R.Run();
        } // End Main
 // Start Main Menthod
 static void Main(string[] args)
 {
     // Create Vairable for class SentenceAnalyzer
     SentenceAnalyzer R = new SentenceAnalyzer();
     // Call run method from class
     R.Run();
 }