#include <iostream>
using namespace std;
void drawRectangle( int l, int h )
{
for ( int column (0); column < l; column++ )
{
for ( int line (0); line < h; line++ )
}
{
cout << "*";
}
cout<<endl;
}
int main()
{
int length, height;
cout << "Length for rectangle : ";
cin >> length;
cout << "Height for rectangle : ";
cin >> height;
drawRectangle(length, height);
return 0;
}