PROGRAMMING:Narcissistic number
###Task description
Please judge whether a number is a narcissus number. The narcissus number defines the cube of each digit and the three digits of itself.
###Input format:
There are multiple groups of test data, each group of test data contains an integer n (100 < = n < 1000)
Enter 0 to indicate the end of program input.
###Output format:
If n is the number of daffodils, output yes
Otherwise, output No
###Input example:
```in
one hundred and fifty-three
one hundred and fifty-four
0
```
###Output example:
```out
Yes
No
```
###Title Source
Note: this topic is selected from nyoj website http://nyoj.top/problem/39
answer:If there is no answer, please comment
Please judge whether a number is a narcissus number. The narcissus number defines the cube of each digit and the three digits of itself.
###Input format:
There are multiple groups of test data, each group of test data contains an integer n (100 < = n < 1000)
Enter 0 to indicate the end of program input.
###Output format:
If n is the number of daffodils, output yes
Otherwise, output No
###Input example:
```in
one hundred and fifty-three
one hundred and fifty-four
0
```
###Output example:
```out
Yes
No
```
###Title Source
Note: this topic is selected from nyoj website http://nyoj.top/problem/39
answer:If there is no answer, please comment