PROGRAMMING:Single cycle - print the number of daffodils between 100-x. Narcissus number is a three digit number, which is characterized by the cubic sum of its digits being equal to itself.
Enter the value of X from the keyboard and print the number of daffodils between 100-x. Narcissus number is a three digit number, which is characterized by the cubic sum of its digits being equal to itself.
For example, 153 is the number of daffodils. Because the sum of your cubes, that is, 1 + 125 + 27, is exactly 153.
###Input format:
Enter the value of X( X is between 100-999, regardless of illegal input)
###Output format:
Output all daffodils between 100 and X (including x). Separated by spaces. For simplicity, there is also a space at the end of the last number.
###Input sample 1:
```in
four hundred
```
###Input sample 2:
```in
two hundred
```
###Output sample 1:
```out
153 370 371
```
###Output sample 2:
```out
one hundred and fifty-three
```
answer:If there is no answer, please comment
For example, 153 is the number of daffodils. Because the sum of your cubes, that is, 1 + 125 + 27, is exactly 153.
###Input format:
Enter the value of X( X is between 100-999, regardless of illegal input)
###Output format:
Output all daffodils between 100 and X (including x). Separated by spaces. For simplicity, there is also a space at the end of the last number.
###Input sample 1:
```in
four hundred
```
###Input sample 2:
```in
two hundred
```
###Output sample 1:
```out
153 370 371
```
###Output sample 2:
```out
one hundred and fifty-three
```
answer:If there is no answer, please comment