height= int(input("What is your height ")) weight= int(input("What is your weight ")) height2 = (height*height) BMI= (weight/height2) print ("your BMI is",(BMI))