//this pragram displays a list of numbers and
//their squares.
#include <iostream>
using namespace std;

int main ()
{
	const int MIN_NUMBER = 1,	//starting number to square
			  MAX_NUMBER = 10;	//maximum number to square
	
	int num = MIN_NUMBER;		//counter
	
	cout << "Number Number Squared\n";
	cout << "-------------------------\n";
	while (num <= MAX_NUMBER)
	{
		cout <<  num << "\t\t" << (num*num) << endl;
		num++;	//increment the counter
	}
	return 0;
}
