BlueBook
Write a program that will find all the three-digit natural numbers that
are equal to the sum of the cubes of their digits. The range of numbers
will be
Sample Input
Copy
100 200
Sample Output
Copy
153
Explanation for Sample Output
For example, the number
Comments
If there are multiple answers, separate them with a newline (
'\n'
in most languages).