Problems
Given the height π of a triangle, write a program that prints a triangle in the format shown in the sample output.
Input
A positive odd integer π not exceeding 100 is given.
Output
If the input value is outside the specified range, output INPUT ERROR!.
There should be no spaces between * characters.
Example #1
0
INPUT ERROR!
Example #2
3
**
*
**
Example #3
7
****
***
**
*
**
***
****
Tag
Source
JUNGOL