#T631. 打印字符图样
打印字符图样
Description
Output N lines of character patterns based on the input N. For example, when N=4, the output should be:
*
* * *
* * * * *
* * * * * * *
Input Format
N lines of character patterns, with one space between each asterisk.
Output Format
N lines of character patterns, with one space between each asterisk.
```input1 4 ``` ```output1 * * * * * * * * * * * * * * * * ``` ## SourceCodesOnline