Star Carpet

View as PDF

Submit solution

Points: 3
Time limit: 2.0s
Memory limit: 256M

Problem type

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 L and a width of W (1 \le L, W \le 100)?

For example, if Daniel wanted to make a carpet with length 4 and width 3, it would look like so:

****
****
****

How pretty!

Input Specification

The first line of input will contain L the length .

The second line of input will contain W the width.

Output Specification

Output the carpet Daniel wants! Formally, output W lines of L * characters.

Sample Input

4
3

Sample Output

****
****
****

Comments

There are no comments at the moment.