Given the following code:
string name, hometown, state;
getline(cin,name);
getline(cin,hometown);
getline(cin,state);
cout << name << endl;
cout << hometown << endl;
cout << state << endl;
What will it output if the input entered by the user is:
Lynn Guini
Pastaville
Alaska