int a[1024][1024];

main()
{
	register int i, j;

	while (1) for (i=0; i<1024; i++)
		for (j=0; j<1024; j++)
			a[j][i] = j;

	exit(0);
}
