Problem description
153 It's a very special number , It's equal to the cubic sum of each of its numbers , namely 153=1*1*1+5*5*5+3*3*3. Program to find all three decimal numbers that meet this condition .
Output format
The order of the output in decimal order , Each number takes up a line .
for i in range(100,1000):
a = str(i)// Converted to string for slicing
if (int(a[0])**3)+(int(a[1])**3)+(int(a[2])**3) == i:
print(i)