Create a project with the following interfaces:
IWalking, which has methods printSpeed() and printDistanceWalked()
IFlying, which has methods printSpeed() and printDistanceFlown()
Then, the following class,
Animal, which inherits BOTH IWalking and IFlying. Should also include a String called name, an int called speed, a double called distanceFlown, and a double called distanceWalked. This class should include constructors, setters, and getters.
Use the Main method to test out your Animal class.