Daniel runs a carpet store. He wants to create a carpet made out of stars. Not actual stars (that would be a bit too expensive), but rather these: *
Can you help him make a carpet with a length of and a width of ?
For example, if Daniel wanted to make a carpet with length and width , it would look like so:
****
****
****
How pretty!
Input Specification
The first line of input will contain the length .
The second line of input will contain the width.
Output Specification
Output the carpet Daniel wants! Formally, output lines of *
characters.
Sample Input
4
3
Sample Output
****
****
****
Comments