PROGRAMMING:Output asterisk triangle
Enter an integer n from the keyboard, and then output an asterisk "*" composed of N lines of triangle.
###Input format:
For example, enter 5
###Output format:
*
***
**
****
###Input example:
```in
five
```
###Output example:
```out
*
***
**
****
```
answer:If there is no answer, please comment
###Input format:
For example, enter 5
###Output format:
*
***
**
****
###Input example:
```in
five
```
###Output example:
```out
*
***
**
****
```
answer:If there is no answer, please comment