#include <iostream>
#include <stdlib.h>
#include <string>
#include <iomanip>
#include <fstream>

using namespace std;

int main()
{
    ofstream out("myProducts.txt");
    if (!out)
    {
    cout << "Cannot create file. \n";
    return 1;
    }

for (int i = 0; i < 2; i++)
{
    out << "777" << endl;
    out << "\"Me\"" << endl;
    out << "\"Las Vegas\"" << endl;
    out << "77.77" << endl;
    out << "A" << endl;
    out << "\"Red Blue Green\"" << endl;
}

    out.close();

    system("pause");

    return 0;
}


