Problem2344--【入门】放大的Z

2344: 【入门】放大的Z

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

打印n行放大的Z。 比如: n=3,打印图形如下
***
 *
***
n=5,打印图形如下

*****
   *
  *
 *
*****



Input

一个整数n(n<10)

Output

n行放大的Z。

Sample Input Copy

4

Sample Output Copy

****
  *
 *
****

Source/Category