#include <fstream>
#include <iostream>
using namespace std;

int main()
{
ifstream data2;
data2.open("data5.txt");

int num[15];
int mark=0;

ofstream out2;
out2.open("out5.txt");

    out2<<"1:"<<endl;
        out2<<"2:"<<endl;
            out2<<"3:"<<endl;
                out2<<"4:"<<endl;
                    out2<<"5:"<<endl;
    


out2.close();
data2.close();

system("pause>nul");
}

