#include <stdio.h>

fred () {
static int jim = 1;
  printf("hello jim %d\n", jim);
};

main () {
  fred();
};