height=float(input("what is your height")) weight=float(input("what is your weight")) bmi=(weight/(height*height)) print(("your BMI is"), bmi)