#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream csv;
csv.open ("testing.csv");
csv << "Writing, this, to, a, file";
csv.close();
return 0;
}