height= float(input ("how tall are you") ) weight= float(input ("how much do you weigh") ) height= height * height bmi= weight / height round_bmi= round(bmi,1) print("Your bmi is", round_bmi)