// Copy a List of Strings from Cin to Cout, one per line #include #include // has EXIT_SUCCESS #include #include // has input_iterator #include // has copy int main() { copy(istream_iterator(cin), istream_iterator(), ostream_iterator(cout, "\n")); return EXIT_SUCCESS; }