Write a program to do the following:
- prompt the user to enter name
- prompt the user to enter age
- prompt the user to enter height in meter (between 1.6 and 2.0)
- check that the numerical inputs (age and height) are numerical values and output appropriate message to identify which is not correct (use try / except for this purpose)
- increase age by 1
- increase height by 0.1
Send name, age and height to the standard output.