def bodymassindex(height, weight): return round((weight / height**2),2) height = float(input("What's your height?")) weight = float(input("How much do you weigh?")) bmi = bodymassindex(height, weight) print("Your BMI is:", bmi)