I have two classes, Person and Student, where Student extends Person and both classes have the get method.
I made an object from Student and I want to call both get with this object. how can I super the method of the superclass? Or is there any other way for doing that?