height = float(input("Enter your height:")) weight = float(input("Enter your weight:")) bmi = weight/(height ** 2) print (f"Your Body Mass Index (BMi)is:{bmi:.2f}")