Problem F: 打印六芒星

Problem F: 打印六芒星

[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">n 的六芒星图案,比如 lns="http://www.w3.org/1998/Math/MathML">n=3 时,输出

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


Input

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

Output

一个六芒星图案。

Sample Input Copy

4

Sample Output Copy

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