//Reading a name #include #include using namespace std; int main(void) { string name; cout<<"What is your first name:"; cin>>name; //reads until the first space or newline cin.ignore(100,'\n'); //clears the input buffer cout<<"Hello "<