// cp: copy cin to cout #include using namespace std; int main( void ) { char c; for (;;) { cin >> noskipws >> c; if ( cin.eof() ) break; cout << c; } return 0; }