public static void Main()
    {
        // 2 methods to call this meethos. 1. create instance of main class. 2. create instance of abstract clas referencing to main class
        CustClass CC = new CustClass();

        CC.print();

        CustomerAbstract CA = new CustClass();

        CA.print();
    }