#include <stdio.h>
main()

{
	int i;
	for (i=0; i<11; i++)	/* Looping: repeat ten times */
		printf("I will not hack in class\n");
}
