static void Main(string[] args)
        {
            Employee e = new Employee("Naidu", "*****@*****.**", "TCS", ".NET");

            e.Print();
            Student s = new Student("Sumanth", "*****@*****.**", "GVP");

            s.Print();
        }