Write a set of C++ statements to ask user entering information as below:

CPU will be able to take more than one word for the input.

Hint:  you need a getline function as below:

string name;
cout<<"Enter your full name."<<endl;
getline(cin, name);