#include #include // for exit() using namespace std; int main() { char str[256]; while(!cin.eof()) { // Read a line of maximum size 255 bytes. cin.getline(str, 256); cout << " -> " << str << endl; } }