PROGRAMMING:Print digital solid rectangle
Print a solid rectangle composed of numbers and asterisks, with numbers in the outer frame and asterisks in the inner.
###Input format:
Enter an integer n (n > 0).
###Output format:
Print a number rectangle. The border of the rectangle is an integer n. the rows and columns should be n numbers( Note: there are no empty lines) and inside the rectangle are asterisks.
###Input example:
Here is a set of inputs. For example:
```in
five
```
###Output example:
The corresponding output is given here. For example:
```out
fifty-five thousand five hundred and fifty-five
5***5
5***5
5***5
fifty-five thousand five hundred and fifty-five
```
###Input sample 2:
Here is a set of inputs. For example:
```in
two
```
###Output sample 2:
The corresponding output is given here. For example:
```out
twenty-two
twenty-two
```
###Input sample 3:
Here is a set of inputs. For example:
```in
one
```
###Output sample 3:
The corresponding output is given here. For example:
```out
one
```
answer:If there is no answer, please comment
###Input format:
Enter an integer n (n > 0).
###Output format:
Print a number rectangle. The border of the rectangle is an integer n. the rows and columns should be n numbers( Note: there are no empty lines) and inside the rectangle are asterisks.
###Input example:
Here is a set of inputs. For example:
```in
five
```
###Output example:
The corresponding output is given here. For example:
```out
fifty-five thousand five hundred and fifty-five
5***5
5***5
5***5
fifty-five thousand five hundred and fifty-five
```
###Input sample 2:
Here is a set of inputs. For example:
```in
two
```
###Output sample 2:
The corresponding output is given here. For example:
```out
twenty-two
twenty-two
```
###Input sample 3:
Here is a set of inputs. For example:
```in
one
```
###Output sample 3:
The corresponding output is given here. For example:
```out
one
```
answer:If there is no answer, please comment