PROGRAMMING:Judge whether a three digit number is a narcissus number
Enter an integer to determine whether it is a narcissus number. Narcissus number is a three digit integer whose cubic sum of each digit is equal to itself,
For example, 153 is a narcissus number, 153 = 1 × one × 1+5 × five × 5+3 × three × three
###Input format:
Enter an integer to represent the number of judgment
###Output format:
If the number is narcissus number, output: Yes
If the number is not narcissus number, output: No
If the number is not a three digit number, output: error
###Input sample 1:
```in
one hundred and fifty-three
```
###Output sample 1:
```out
yes
```
###Input sample 2:
```in
two hundred and fifty-eight
```
###Output sample 2:
```out
no
```
###Input sample 3:
```in
fifteen
```
###Output sample 3:
```out
error
```
answer:If there is no answer, please comment
For example, 153 is a narcissus number, 153 = 1 × one × 1+5 × five × 5+3 × three × three
###Input format:
Enter an integer to represent the number of judgment
###Output format:
If the number is narcissus number, output: Yes
If the number is not narcissus number, output: No
If the number is not a three digit number, output: error
###Input sample 1:
```in
one hundred and fifty-three
```
###Output sample 1:
```out
yes
```
###Input sample 2:
```in
two hundred and fifty-eight
```
###Output sample 2:
```out
no
```
###Input sample 3:
```in
fifteen
```
###Output sample 3:
```out
error
```
answer:If there is no answer, please comment