Processing math: 100%
Star Triangle - MarisaOJ: Marisa Online Judge

Star Triangle

Time limit: 1000 ms
Memory limit: 256 MB

You are given an integer a. Print the following equilateral triangle with side of length a.

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

Input

  • An integer a.

Output

  • The above triangle.

Constraints

  • 1≤a≤1000.

Example

Input:

5

Output:

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