#include <stdio.h>
#include <stdlib.h>

void main (void)
{
	FILE *infile;
	int a, number, x;

	/* create file to put random ints in */
	infile = fopen("matrix8.dat", "w");

	srand(200);

	for (a=0; a<10000; a++) {
		number = rand();
		x = fprintf(infile, "%d\n", number % 100);
	}

	/* close the file */
	fclose(infile);

	exit(1);
}

