Answer:
See Explanation
Step-by-step explanation:
Your program is correct.
However, it's best to control your output (especially when it involves decimals) by rounding up to some decimal places.
So, I'll rewrite the program as follows (See comments for explanation)
#Prompt user for weight
w = float(input("Enter weight in pounds: "))
#Prompt user for height
h = float(input("Enter height in inches: "))
#Calculate BMI
bmi = w / (h * h) * 703
#Print BMI and round up to 2 decimal places
print("BMI = " + str(round(bmi,2)))