Problem6334--双重循环练习题 2 —— 打印金字塔

6334: 双重循环练习题 2 —— 打印金字塔

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

Description

输入一个 $n$,输出 $n$ 层图形。
具体参考样例输出。

Input

输入一个数 $n\ (1≤n≤100)$。

Output

输出相应的图形。

Sample 1 Input

4

Sample 1 Output

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

Source/Category