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