#include #include using namespace std; int main() { cout << "My pid is: " << getpid() << endl; fork(); fork(); fork(); cout << "My pid is: " << getpid() << endl; }