import time
time.sleep(1)
height = float(input('What is your height? '))
time.sleep(2)
weight = int(input('What is your weight? '))
time.sleep(1)
print("Your BMI is", weight / height**2)