Problem C: 星号三角阵(三)

Problem C: 星号三角阵(三)

[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 列的星号三角阵,直角位于图形的右上角。

例如当 lns="http://www.w3.org/1998/Math/MathML">n=4 时,输出

****
 ***
  **
   *

Input

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

1≤n≤100


Output

共 lns="http://www.w3.org/1998/Math/MathML">n 行:表示一个星号三角阵。

Sample Input Copy

3

Sample Output Copy

***
 **
  *