1 2 3 4 5 6 7 8 9 10
#include <iostream> #include <string> int main() { std::string s; while (std::cin >> s) { std::cout << s; } return 0; }