In this exercise we will code a simple example of an abstract class, and two other classes that inherit from it.To focus on the concept of inheritance, we will introduce another set of classes: Animal, Mammal, and Reptile.More specifically, Animal will be our abstract class, and both Mammal and Reptile will inherit from it.