for n=100 to 999a=int(n/100)b=int((n-a*100)/10)c=n-a*100-b*10if n=a^3+b^3+c^3 then print nnext na是取百位,b取十位,c取个位