#include "CS35lib.h"


int main()
{
	char name[20];
	int counter;
		for (counter = 1; counter <4; counter++)
		{
			cout<<"Enter name of friend "<<counter<<": ";
			cin>>name;
			
		
	}
		if (counter < 1)
			{
				cout<<name;
			}
			if (counter < 2)
			{
				cout<<name;
			}
			if (counter < 3)
			{
				cout<<name;
			}
	
		cout<<endl;
		cout<<"Dear "<<name;
		cout<<endl;
		cout<<"I thought u wanted to know that "<<name<<" is being an asswhole"; 					
		cout<<" lately and i think u should someten about it...aight. Dont tell"; 
		cout<< name<<" about all the shit...laterz -"<<name<<endl	;
	
	return 0;
	
}
	
	
