PROGRAMMING:Zjw series of video game building blocks
One afternoon, just in the sunshine, zjw and his roommate came to Taichung's largest Yizhong Street business district. In addition to eating a lot, Yizhong Street played a variety of things. Zjw came to a video game mall around the corner and saw a video game building block in the corner of the cabinet. The figure is as follows:

Because the video game building blocks are too regular, as long as you know the number of layers, you can calculate the number of all the small blocks in the video game building blocks.
Now ask the smart acmer to write a program to help zjw, give you a layer number of video game building blocks, find out the total number of all the small blocks in this video game building block.
###Input format:
Enter t, which means t group data (T < = 10), and end when t = 0.
Next, enter t groups of data, each group of data has only one positive integer, which represents the number of layers of the video game building block n (n < = 200).
###Output format:
There is an output corresponding to the number of layers of each input, which represents the total number of all small blocks in the video game building block, and each output occupies one line.
###Input example:
Here is a set of inputs. For example:
```in
two
one
five
0
```
###Output example:
The corresponding output is given here. For example:
```out
one
thirty-five
```
answer:If there is no answer, please comment

Because the video game building blocks are too regular, as long as you know the number of layers, you can calculate the number of all the small blocks in the video game building blocks.
Now ask the smart acmer to write a program to help zjw, give you a layer number of video game building blocks, find out the total number of all the small blocks in this video game building block.
###Input format:
Enter t, which means t group data (T < = 10), and end when t = 0.
Next, enter t groups of data, each group of data has only one positive integer, which represents the number of layers of the video game building block n (n < = 200).
###Output format:
There is an output corresponding to the number of layers of each input, which represents the total number of all small blocks in the video game building block, and each output occupies one line.
###Input example:
Here is a set of inputs. For example:
```in
two
one
five
0
```
###Output example:
The corresponding output is given here. For example:
```out
one
thirty-five
```
answer:If there is no answer, please comment