print("\033c") height = float(input("What is your height? ")) weight = float(input("What is your weight? ")) height_squared = height * height result = weight / height_squared print ("Your BMI is:", result)