#include #include using namespace std; int main() { string word; ifstream thePoem; thePoem.open("ocap.txt"); thePoem >> word; while (thePoem) { cout << word << endl; thePoem >> word; } thePoem.close(); return 0; }