#include <stdio.h>
#include <math.h>
int main(){
for (int i = 10; i< 100;i++)
if ((pow(i%10+i/10,2) + i%10 + i/10) == i)
printf("%d\n",i);
return 0;
}
#include <stdio.h>
#include <math.h>
int main(){
for (int i = 10; i< 100;i++)
if ((pow(i%10+i/10,2) + i%10 + i/10) == i)
printf("%d\n",i);
return 0;
}