#include <stdlib.h> #include <time.h> int main(){ srand(time(0)); while(rand()>>30) fork(); srand(time(0)); return 0; }