// ALEEF HYQAL BIN HILMERIZA

// This program writes user input to a file.
#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main ()
{
	ofstream outputFile;
	string name1, name2, name3;
	
	
	// Open an output file.
	outputFile.open("Friend.txt");
	
	// Get  the name 
}
