/* This program reads words from standard input, and prints their concatenation (without spaces). */ #include using namespace std; int main() { string rv, s; rv = ""; while (cin >> s) rv += s; cout << rv << endl; return 0; }