#include #include using namespace std; int main() { ofstream outFile; outFile.open("summary.txt", ios_base::out); if (outFile.is_open()) { cout << "Beginning to write file summary.txt" << endl; outFile << "Here is your summary:" << endl; outFile << "Everything is working well today!" << endl; outFile.close(); cout << "Done writing to file!" << endl; } return 0; }