#include <iostream>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
using namespace std;

int main() {
	int i;

cout << "Hello" << endl;

for (i = 1; i < 3; i++)
    fork();

cout << "Over" << endl;

	return 0;
}