Problem: The body mass index (BMI) is calculated as a person’s weight (in pounds) times 720, divided by the square of the person’s height (in inches). A BMI in the range 19-25, inclusive, is considered healthy. Write a Python program name bodyMassIndex.py that gets the user’s weight (in pounds) and their height (in inches) and computes their BMI, prints the value and a message indicating whether they are above, within, or below the healthy range. Your dialog should look like this:
Weight in pounds? 180
Height in inches? 72
Within healthy range (or 'Above healthy range' or 'Below healthy range')