#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>

int main(){
  int i, n; 
  pid_t childpid;
  n = 5;
  for (i = 1; i < n;  ++i)
    if ((childpid = fork()))  break;
  sleep(5);
  return 0;
}


