#include<iostream>
usingnamespace std;
int main() {
string name;
double age;
double weight ;
double feet;
double inches;
double height;
double bmi;
cout<<"what is the name of the patient?\n";
cin>>name;
cout<<"what is the age of the patient?\n";
cin>>age;
cout<<"What is the weight of the patient?\n";
cin>>weight;
cout<<"what is the height in feet of the patient?\n";
cin>>feet;
cout<<"what is the height in inches of the patient?\n";
cin>>inches;
return 0;
height = feet * 12 + inches;
bmi= (weight*703) / (height);
cout<<"Your BMI is"<< bmi<<endl;
}