PRO#1 BMI Calculator

height = int(input(‘Enter your height in inches: ‘))
weight = int(input(‘Enter you weight in pounds: ‘))

bmi = round((weight * 703) / (height ** 2))

if bmi < 18.5:
print (‘Your body mass is’, bmi, ‘and you are underweight.’)
elif bmi > 25:
print (‘Your body mass is’, bmi, ‘and you are overweight.’)
else:
print (‘Your body mass is’, bmi, ‘and you are normal weight.’)