/*
 *	Produce a run of notes
 */

main()
{
	int octave, note;
	int time = 0;

	for (octave = 5; octave <11; octave++) {
		for (note=0; note < 12; note++) {
			printf("i1 %d 2 0 %d.%02d\n", time, octave, note);
			time++;
		}
	}
	exit(0);
}
