// test_seven.cpp CS210 S'03 // 3/24/03 - Ray S. Babcock #include #include using namespace std; int main(void) { string one, two, three; cin >> one; cin >> two; cin >> three; cout << two << endl; return 0; } // assume input from the terminal was the following line myname is Suzie Smith