height = float(input( "What is your height in meters? " )) print(height) weight = float(input( "What is your weight in kilograms? " )) print(weight) print("Your BMI is", weight/height**2)