#include #include using namespace std; int main() { int pounds {0} cout << "To calculate your BMI enter your weight in pounds:"; cin >> weight; int inches {0} cout << "Now enter height in inches:"; cin >> height; int bmi {weight / (height * height)} * 703; cout << "Your BMI is" << bmi << end1; return EXIT_SUCCESS; }