Weight = int( input("What is your weight: ") )
Height = int( input("How tall are you: ") )
print('Your bmi is'), (Weight/Height**2)