Problem1910--左上三角

1910: 左上三角

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

Description

试编一个程序,输出如图所示的三角形。
*****
****
***
**
*

Input

一个整数n,表示三角形的高度

Output

如题三角形

Sample Input Copy

5

Sample Output Copy

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

Source/Category