#include <stdio.h>

void main()
{
 int i;
 for(i=0;i<3;i++){
  static int s=i;
  printf("i=%d s=%d\n",i,s);
 }
}