#include <stdio.h>

main()
{
  int array[10];
  int i;

  for(i=0; i <= 10; i++)
    array[i] = 0;
}