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