/*
   File: numbered.c

   Print a message ten times
   indexed by a number. 
*/

#include <stdio.h>
#include "genlib.h"
#include "simpio.h"

main() {
   int i ;

   /* Repeat 10 times */
   for(i = 0 ; i < 10 ; i++) {
      printf("%d) I will not chew gum in class.\n", i) ;
   }
}
