#include <stdio.h>

int main()
{
  register int i;   // can't use &i

  for (i = 1; i < 15; i++)
     printf("i is %d\n", i);
  return 0;
}
