Height = float(input("What is your height in meters? ")) Weight = int(input("What is your weight in kilograms? ")) # Calculate BMI using the formula: (weight / (height * height)) x 10,000. Then divide by 10,000 to get a result rounded to two decimal places BMI = Weight / (Height ** 2) print ("Your BMI is: ", round(BMI, 1), sep="")