#include #include #include #include int main(){ int i; int x1, x2; for (i=0; i<3; i++){ x1 = fork(); if (i<2 && x1==0){ x2 = fork(); } } return EXIT_SUCCESS; }