#733. 打印金字塔

打印金字塔

Background

Special for beginners, ^_^

Description

输入n值,打印下列形状的金字塔,其中n代表金字塔的层数。

Format

Input

输入只有一个正整数n(1<=n<=9)。

Output

打印金字塔图形

Samples

3
  *
 ***
*****

Limitation

1s, 1024KiB for each test case.