
#include <stdio.h>

main(ac, av)
char *av[];
{
    short i;
    for (i = 1; i < 1000; ++i)
	puts("hello world");
    return(0);
}

