#include #include main() { int i; i = getpid(); printf("Parent=%d\n", i); fork(); fork(); i = getpid(); printf("Who am I? %d\n", i); }