1: Demonstrate inheritance. Create-a Vehicle class with the following attributes:
- make : string
- model : string
- year : short
Create-a Motorcycle class that inherits from the Vehicle class and adds the following attributes:
2: Demonstrate a try-catch block for error handling. In the main method, get the number of kids for the person. If the person enters text (e.g., three), catch the exception, and tell the person about the error. Remember to reset the console input stream!