height = float(input("Hello how tall are you?" )) weight = float(input("How heavy are you?" )) print ("Your BMI is:" , weight / height ** 2 )