// Yousef Rabah     Assi 11 part 1         Tues Nov. 6th, 2001       Drawer 1602

#include "CS35lib.h"


int main()
{

	int number, count_h;
	cout<<"How many times do you want Hello?";
	cin>>number;
	for (count_h=0;count_h<number;count_h++)
	{
	    cout<<"hello"<<endl;
	}
	
	
	
	
	return 0;
	
}
/*
RUN


How many times do you want Hello?9
hello
hello
hello
hello
hello
hello
hello
hello
hello
[rabahyo@quark CS35]$

*/


