赞
踩
while True:
m,n=map(int,input().split())
e=[]
for i in range(m,n+1):
b=i//100
c=(i%100)//10
d=i%10
if i==b**3+c**3+d**3:
e.append(str(i))
if e==[]:
print('no')
else:
print(' '.join(e))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。