#include <iostream>
#include <fstream>
using namespace std;
int main() {
ofstream outFile("notes.txt");
outFile << "Learning C++ files is fun.\n";
outFile << "This is the second line.\n";
outFile.close();
cout << "Finished writing to notes.txt";
return 0;
}