/********************************************************************************\
 *										*
 *	Author:		Jeff Baron						*
 *										*
 *	Date:		09/10/02						*
 *										*
 *	Purpose:	Write a program to print "HELLO" in block letters where	*
 *			each block letter is 7 chars high and 5 chars wide	* 
 *										*
\********************************************************************************/

#include <iostream>

using namespace std;

void main(){
	cout << "*   * ***** *     *      ***	" << endl
	     << "*   * *     *     *     *   *	" << endl
	     << "*   * *     *     *     *   *	" << endl
	     << "***** ***** *     *     *   *	" << endl
	     << "*   * *     *     *     *   *	" << endl
	     << "*   * *     *     *     *   *	" << endl
	     << "*   * ***** ***** *****  ***	" << endl;
}
