height = int (input("What is your height? ")) weight = int (input("What is your weight? ")) BMI = (weight / (height**2)*10000) print ("Your BMI is ", BMI) print("Kylan is a mogging skibidi")