#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <iostream>
#include <signal.h>

//CSE 660
//Jason Kim

using namespace std;

int main(char* argv[])
{
	int pidf;
	pidf = getpid();
	cout << endl;
	cout << "Process F starting with pid of " << pidf << endl;
	
	//process F prints 2 strings and quits. (PID and Hello World)
	cout << "Hello World" << endl;
	cout << "Process F terminating" << endl;
	exit(1);
	return 0;
}
	

