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

#include "CS35lib.h"

int main()
{

	int number, count_h, indentation, width;
	cout<<"How many times do you want Hello?";
	cin>>number;
	cout<<"How many spaces for each additional indentation? ";
	cin>>indentation;
	width = 5;
	for (count_h=0; count_h < number; count_h++, width=width+indentation)
	{
	    cout<<setw(width)<<"hello"<<endl;
	}
	
	
	
	
	return 0;
	
}

/*
RUN

How many times do you want Hello?6
How many spaces for each additional indentation? 3
hello
   hello
      hello
         hello
            hello
               hello
[rabahyo@quark CS35]$

*/



