height = float( input("What height are you?")) weight = int(input("What is your weight?")) bmi = weight/height**2 print("Your BMI is", bmi)