language: C++ 4.7.2 (gcc-4.7.2)
date: 131 days 5 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
 
using namespace std;
 
int main()
{
    string name;
    cout << "Please enter name here: ";
    getline(cin, name);
    cout << endl << name << endl;
}