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