PROGRAMMING:Parallelogram (2) (*)
Please write a program, input the width and height of the parallelogram, output the parallelogram composed of asterisk.
####Input format
>Width and height (all positive integers)
####Output format
>Parallelogram composed of asterisks (see output example)
####Input sample
```in
10 5
```
####Output sample
```out
* * * * * * * * * *
* * * * * * * * * *
* * * * * * * * * *
* * * * * * * * * *
* * * * * * * * * *
```
---
Tip: there is a space between the asterisks, and there is no extra space at the end of the line.
answer:If there is no answer, please comment
####Input format
>Width and height (all positive integers)
####Output format
>Parallelogram composed of asterisks (see output example)
####Input sample
```in
10 5
```
####Output sample
```out
* * * * * * * * * *
* * * * * * * * * *
* * * * * * * * * *
* * * * * * * * * *
* * * * * * * * * *
```
---
Tip: there is a space between the asterisks, and there is no extra space at the end of the line.
answer:If there is no answer, please comment