Limits 1s, 512 MB

Given an integer NN, print a full pyramid of asterisks.

A full pyramid of asterisks of size NN has NN lines of asterisks. The first line has 1 asterisk, the second line has 2 asterisks, the third line has 3 asterisks and so on. Each asterisk has a space between them. The asterisks in each line are centered to make it look like a pyramid.

Here is a full pyramid of asterisks of size 4:

   *
  * *
 * * *
* * * *

Input

The input will contain an integer NN (1N1001 \le N \le 100).

Output

Print the full pyramid of asterisks of the given size.

Do not print any space after the last asterisk in each line.

Sample

InputOutput
3
  *
 * *
* * *

Submit

Login to submit.

Statistics

83% Solution Ratio
ashik_jiddneyEarliest, Nov '18
ashik_jiddneyFastest, 0.0s
ReduancsLightest, 0 B
saitotaShortest, 38B
Toph uses cookies. By continuing you agree to our Cookie Policy.