Problem E: 打印金字塔

Problem E: 打印金字塔

[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">n

Output

根据题意输出层次为 lns="http://www.w3.org/1998/Math/MathML">n 的三角形金字塔。

Sample Input Copy

3

Sample Output Copy

     /\ 
    /__\
   /\  /\ 
  /__\/__\
 /\  /\  /\ 
/__\/__\/__\