Problem G: 打印沙漏

Problem G: 打印沙漏

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

Description

给定一个整数 lns="http://www.w3.org/1998/Math/MathML">n,请打印出一个 lns="http://www.w3.org/1998/Math/MathML">2n1 行的沙漏,例如当 lns="http://www.w3.org/1998/Math/MathML">n=3 时,输出

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

Input

单个整数:表示图形的大小参数 lns="http://www.w3.org/1998/Math/MathML">n2≤n≤50

Output

共 lns="http://www.w3.org/1998/Math/MathML">2n1 行:表示一个沙漏形状的图形。

Sample Input Copy

2

Sample Output Copy

***
 *
***