#include #include using namespace std; int main() { char c; cin.unsetf( ios::skipws ); while ( cin >> c ){ cout << c; } cout << endl; return 0; }