static void Main(string[] args)
        {
            Student s1 = new Student();

            s1.printDefaultConstructor();

            Student s = new Student("Ghulam Ghous", "2018-CS-31");

            s.printParameterizedConstructor();
            s.input();
            s.Output();

            Console.ReadLine();
            ;
        }