I just started learning C++ through a class in college and we are on loops right now. We started with this simple program.

Code:
#include <iostream>
using namespace std;

int main()
{
	int row, column;
	int maxRow = 5;
	int maxCol = 4;
	
	for(row = 0;row < maxRow; row++)
	{
		for(column = 0; column<maxCol; column++)
		{
		cout << "*";
		}
	cout << endl;
	}
	return 0;
}
It simply produces the shape:
****
****
****
****
****
My question is how can I manipulate this program to produce the following shape:
Code:
********
**    **
**    **
**    **
**    **
********
Any suggestions would be MUCH appreciated, thanks again.
-aura2