PROGRAMMING:Draw a rectangle
###Task description
According to the parameters, draw a rectangle.
###Input format:
Input a row, including four parameters: the first two parameters are integers, which represent the height and width of the rectangle in turn (height not less than 3 rows, not more than 10 rows, width not less than 5 columns, not more than 10 columns); The third parameter is a character, which represents the rectangle symbol used for drawing; The fourth parameter is 1 or 0, 0 for hollow and 1 for solid.
###Output format:
Output the drawing.
###Input example:
```in
7 7 @ 0
```
###Output example:
```out
@@@@@@@
@ @
@ @
@ @
@ @
@ @
@@@@@@@
```
###Input example:
```in
3 5 # 1
```
###Output example:
```out
#####
#####
#####
```
###Title Source
Note: this topic is selected from openjudge website http://noi.openjudge.cn/ch0105/42/
answer:If there is no answer, please comment
According to the parameters, draw a rectangle.
###Input format:
Input a row, including four parameters: the first two parameters are integers, which represent the height and width of the rectangle in turn (height not less than 3 rows, not more than 10 rows, width not less than 5 columns, not more than 10 columns); The third parameter is a character, which represents the rectangle symbol used for drawing; The fourth parameter is 1 or 0, 0 for hollow and 1 for solid.
###Output format:
Output the drawing.
###Input example:
```in
7 7 @ 0
```
###Output example:
```out
@@@@@@@
@ @
@ @
@ @
@ @
@ @
@@@@@@@
```
###Input example:
```in
3 5 # 1
```
###Output example:
```out
#####
#####
#####
```
###Title Source
Note: this topic is selected from openjudge website http://noi.openjudge.cn/ch0105/42/
answer:If there is no answer, please comment