```python
for i in range(10,10001):
s=str(i)
if len(s)==2:
a=i%10
b=i/10%10
if i==pow(a,2)+pow(b,2):
print("{}={}**2+{}**2".format(i,a,b))
elif len(s)==3:
a=i%10
b=i/10%10
c=i/100%10
if i==pow(a,3)+pow(b,3)+pow(c,3):
print("{}={}**3+{}**3+{}**3".format(i,a,b,c))
elif len(s)==4:
a=i%10
b=i/10%10
c=i/100%10
d=i/1000%10
if i==pow(a,4)+pow(b,4)+pow(c,4)+pow(d,4):
print("{}={}**4+{}**4+{}**4+{}**4".format(i,a,b,c))
else:
if i==pow(1,5):
print(i)
```想要的运行结果是153=13+53+3**3
实际的代码输入153运行结果为153