#include <stdio.h>

int main()
{
int index;

   for(index = 1 ; index < 101 ; index = index + 1) 
   {
      if ((index >= 32) && (index <= 39))
         printf("%5d\n", index);
   }

   return 0;
}



/* Result of execution

   32
   33
   34
   35
   36
   37
   38
   39

*/
