#include #include using namespace std; int main() { pid_t id; if (fork()) { sleep(10); } return 0; }