#include <stdio.h>
#include <stdlib.h>

int main(void)
{
	while(1)
		printf("%d\n",rand());
	return EXIT_SUCCESS;
}

