# Easy - 1
Write a program that reads a number **N** and prints the **arrow** shape of __(N*2) - 1__ rows using stars (`*`).
```
*
* *
* *
* * * *
* *
* *
*
```
<MultiLineNote>
There is a space after every star.
</MultiLineNote>
---
#### Input
The input will be a single line containing an integer.
---
#### Output
The output should be `(N*2) - 1` lines containing stars as an **arrow** shape shown in the sample output.
---
#### Explanation
For example, if `N = 4`, the output should be,
```
*
* *
* *
* * * *
* *
* *
*
```