#include using namespace std; int main() { char str[255]; while ( !cin.eof() ){ cin.getline( str, 255 ); cout << str << endl; } cout << endl; return 0; }