// Working Directory.cpp : Defines the entry point for the console application.
//
#include <cstdlib>
#include <fstream>

using namespace std;

int main()
{
	ofstream output("OUT5.txt");

	srand(rand());

	int i;
	for(i = 0; i < 5; ++i)
		output << (rand() % 15) + 5 << endl;
	return 0;
}


