#include #include // for exit() using namespace std; int main() { char str[256]; while(!cin.eof()) { cin >> str; cout << " -> " << str << endl; } }