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