PROGRAMMING:4.25 - inverted pyramid of output layers
Write a program to show the downward pyramid shape of the input integer layer as shown below.
Line I shows the result of I% 10.
-----From exercise 4-25
```
Let's draw a downward pyramid.
The pyramid has several layers: 3
eleven thousand one hundred and eleven
two hundred and twenty-two
three
```
###Input example:
Here is a set of inputs. For example:
```in
three
```
###Output example:
```out
Let's draw a downward pyramid.
The pyramid has several layers:
eleven thousand one hundred and eleven
two hundred and twenty-two
three
```
answer:If there is no answer, please comment
Line I shows the result of I% 10.
-----From exercise 4-25
```
Let's draw a downward pyramid.
The pyramid has several layers: 3
eleven thousand one hundred and eleven
two hundred and twenty-two
three
```
###Input example:
Here is a set of inputs. For example:
```in
three
```
###Output example:
```out
Let's draw a downward pyramid.
The pyramid has several layers:
eleven thousand one hundred and eleven
two hundred and twenty-two
three
```
answer:If there is no answer, please comment