Technology knowledge has to be shared and made accessible for free. Join the movement.
#include <iostream> #include <string> using namespace std; int main() { string s; // read a line (possibly containing white spaces) // from standard input and assign it to s getline(cin, s); return 0; }