Calculating Height

Write a program calculating_height.py that asks the user to enter their height in two parts, first just the feet part, and then the inches part. It should then calculate their total height in inches and display that result. Finally, it should add one to the total height in inches and display that new value for the user.

Sample interaction:

Please enter your height, just the feet part: 5
... and now enter the inches part: 7
Your total height is 67 inches
If you grow another inch, you'll be 68 inches tall!