2.7 LAB (Ch 2): BMI
The Body Mass Index (BMI) formula is:
weight in pounds x 703 divided by height in inches squared
Write a program to ask the user for their weight (a float, in pounds) and height (a float, in inches), compute and print the resulting BMI.
Example: If the input is:
200
72
Then the output is:
Enter your weight in pounds
Enter your height in inches
Your BMI is 27.121913580246915
Remember to try and match the sample output as closely as possible.