5433: 【38课】【3233】金字塔

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:24 Solved:17

Description

输入一个正整数n,生成一个层数为n的金字塔。详细图形请看样例。注意n=1时就没有地板了。

Input

第一行一个整数n(1≤n≤100),表示层数。

Output

输出n层金字塔,注意金字塔是完全对称的,在金字塔的右侧也需要输出与左侧相同的空格。

Sample Input Copy

5

Sample Output Copy

    /\
   /__\
  /____\
 /______\
/________\