PROGRAMMING:Biblical number (Cixi, 2005)
People call l 53 "Biblical number" because 153 has an interesting property: write any multiple of 3,
Add the cubes of each number (the cube of one number = the result of multiplying three numbers, such as 5 ^ 3 = 5 * 5 * 5 = 125) to get the sum,
Then add the cubes of the sum and repeat this, and finally l 53 will appear.
For example, 2 4 is a multiple of 3. According to the above rules, the process of transformation is as follows:
24→2X2X2+4X4X4→72→7X7X7+2X2X2→351→3X3X3+5X5X5+1X1X1→153
After three transformations, 153 appears! Please write a program to input a multiple of 3 and output the times needed to transform it into 153
Count.
###Input format:
The first line reads in a multiple of 3.
###Output format:
The output file has only one line, which is the number of times it takes to convert to 153.
###Input example:
```in
twelve
```
###Output example:
```out
five
```
answer:If there is no answer, please comment
Add the cubes of each number (the cube of one number = the result of multiplying three numbers, such as 5 ^ 3 = 5 * 5 * 5 = 125) to get the sum,
Then add the cubes of the sum and repeat this, and finally l 53 will appear.
For example, 2 4 is a multiple of 3. According to the above rules, the process of transformation is as follows:
24→2X2X2+4X4X4→72→7X7X7+2X2X2→351→3X3X3+5X5X5+1X1X1→153
After three transformations, 153 appears! Please write a program to input a multiple of 3 and output the times needed to transform it into 153
Count.
###Input format:
The first line reads in a multiple of 3.
###Output format:
The output file has only one line, which is the number of times it takes to convert to 153.
###Input example:
```in
twelve
```
###Output example:
```out
five
```
answer:If there is no answer, please comment