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