1573: 【09】方阵图案▃

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:21 Solved:12

Description

输入一个正整数n,用“*”输出n行n列的方阵图案。

提示:

1.print(x, end= ‘ ’)语句可以输出指定内容,以空格结尾;

2.print()语句不输出任何内容,表示换行。

Input

一个正整数n(2<=n<=10)。

Output

用“*”输出n行n列的方阵图案,每行相邻两个字符用一个空格隔开。

注意:

输出时行末尾是否有空格,不影响答案的正确性。

Sample Input Copy

3

Sample Output Copy

* * * 
* * * 
* * *