height = float(input("What is your height? ")) weight = float(input("What is your weight? ")) height = height * height BMI = weight / height print (BMI)