#include #include // for exit() using namespace std; int main() { string str; while(!cin.eof()) { getline(cin, str); cout << " -> " << str << endl; } }