From: utzoo!decvax!ucbvax!ARPAVAX:arnold
Newsgroups: net.sources
Title: rogue source
Article-I.D.: ucbarpa.2057
Posted: Sun Sep 19 12:22:40 1982
Received: Tue Sep 21 03:52:15 1982

main()
{
	srand(getpid());
	sleep((rand() % 120) * 60);
	if ((rand() % 1000000) == 0)
		printf("You Win!\n");
	else
		printf("You Loose.\n");
	exit(0);
}