PROGRAMMING:Output matrix
######Task description
```
Input a positive integer and output the square matrix as required.
```
######Input format:
```
A positive integer n (n < 100).
```
######Output format:
```
Output n rows and N columns square matrix in the form of output sample.
```
######Input example:
```in
three
```
######Output example:
```out
0101 0102 0103
0201 0202 0203
0301 0302 0303
```
######Input example:
```in
twelve
```
######Output example:
```out
0101 0102 0103 0104 0105 0106 0107 0108 0109 0110 0111 0112
0201 0202 0203 0204 0205 0206 0207 0208 0209 0210 0211 0212
0301 0302 0303 0304 0305 0306 0307 0308 0309 0310 0311 0312
0401 0402 0403 0404 0405 0406 0407 0408 0409 0410 0411 0412
0501 0502 0503 0504 0505 0506 0507 0508 0509 0510 0511 0512
0601 0602 0603 0604 0605 0606 0607 0608 0609 0610 0611 0612
0701 0702 0703 0704 0705 0706 0707 0708 0709 0710 0711 0712
0801 0802 0803 0804 0805 0806 0807 0808 0809 0810 0811 0812
0901 0902 0903 0904 0905 0906 0907 0908 0909 0910 0911 0912
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
```
answer:If there is no answer, please comment
```
Input a positive integer and output the square matrix as required.
```
######Input format:
```
A positive integer n (n < 100).
```
######Output format:
```
Output n rows and N columns square matrix in the form of output sample.
```
######Input example:
```in
three
```
######Output example:
```out
0101 0102 0103
0201 0202 0203
0301 0302 0303
```
######Input example:
```in
twelve
```
######Output example:
```out
0101 0102 0103 0104 0105 0106 0107 0108 0109 0110 0111 0112
0201 0202 0203 0204 0205 0206 0207 0208 0209 0210 0211 0212
0301 0302 0303 0304 0305 0306 0307 0308 0309 0310 0311 0312
0401 0402 0403 0404 0405 0406 0407 0408 0409 0410 0411 0412
0501 0502 0503 0504 0505 0506 0507 0508 0509 0510 0511 0512
0601 0602 0603 0604 0605 0606 0607 0608 0609 0610 0611 0612
0701 0702 0703 0704 0705 0706 0707 0708 0709 0710 0711 0712
0801 0802 0803 0804 0805 0806 0807 0808 0809 0810 0811 0812
0901 0902 0903 0904 0905 0906 0907 0908 0909 0910 0911 0912
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
```
answer:If there is no answer, please comment