#include <stdio.h> #include <math.h> int main() { int a,b; scanf("%d %d",&a,&b); for (int i = 0 ; i < b ; i++) { int c = 0, d = a + i; while(d) { c += pow((d%10),4); d /= 10; } if (c == ...