/*
   File: do_ten.c

   Print a message ten times.
*/

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

main() {
   int i ;

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

