1 
2 #include <stdio.h>
3 
main()4 main()
5 {
6   int i;
7 
8   for (i=0; i<10000; i++)
9 	fputc(0, stdout);
10 
11 }
12