Problem I: 打印K型

Problem I: 打印K型

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

Description

小爱想用 * 打出一个大写的 K。例如 lns="http://www.w3.org/1998/Math/MathML">n=3 时,输出

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

给定一个整数 lns="http://www.w3.org/1998/Math/MathML">n 表示字形的大小。请输出一个由星号组成的,对应大小的 K 字形图案。该字形由 lns="http://www.w3.org/1998/Math/MathML">2n+1 行组成,第一笔竖线固定占两列,第二笔折线会根据参数 lns="http://www.w3.org/1998/Math/MathML">n 适当调整粗细,具体请参考样例。

Input

单个整数表示 lns="http://www.w3.org/1998/Math/MathML">n1≤n≤50

Output

共 lns="http://www.w3.org/1998/Math/MathML">2n+1 行,表示一个 K 字形图案。

Sample Input Copy

5

Sample Output Copy

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