height = float( input( "What is your height (m)? " ) ) weight = int( input( "What is your weight (kg)? ") ) print( "Your BMI is: ", weight / (height**2))