#include #include using namespace std; int main(){ fstream the_file("read_file.cpp"); string word; while(the_file >> word){ cout << word << endl; } the_file.close(); return 0; }