#include <stdio.h> #include <math.h> int main() { int m,n; int a[10]={0}; while((scanf("%d %d",&m,&n))!=EOF){ int b=m; int s=0,i=0; for(;b<=n;b++){ s=(int)(pow(b/100,3)+pow(b/10%10,3)+pow(b%10,3)); if(s==b){ a...