#include #include #include using namespace std; int main() { string word; for(int i =0; i < 1'000'000'000; ++i) { int words = 0; ifstream inFile{"ocap.txt"}; ofstream outFile{"copy.txt"}; while (inFile >> word) { words++; outFile << word << endl; } cout << getpid() << " There were " << words << endl; } return 0; }