Solid Rectangle
Given two positive integers m and n, print a solid rectangle with m rows and n columns using the character *.
Input
- One line containing two positive integers m and n.
Output
- Print m lines. Each line contains n asterisks.
Constraints
- 1 <= m, n <= 100
Example
Input
3 5
Output
*****
*****
*****
Comments