height = float( input('What is your height')) weight = float( input('What do you weigh?')) square = height * height answer = weight / square print ("Your bmi is ", (round (answer,2)))