4380: 【入门】放大的Z

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:20 Solved:15

Description

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

Input

一个整数n(n<10)

Output

n行放大的Z。

Sample Input Copy

4

Sample Output Copy

****
  *
 *
****