123456789
string str; // Read one word. // http://www.cplusplus.com/reference/string/string/operator%3E%3E/ cin >> str; // Read the whole line. // http://www.cplusplus.com/reference/string/string/getline/ getline(cin, str);