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