height = float(input( "What is your height? (m)" )) weight = int(input("What is your weight? (whole number) ")) print("your BMI is", round(weight/height/height, 1))