#include<stdio.h>
int main()
{
int i=0;j=0;a[5],b[5],k=0,count=0,n=0;
for(i=1;i<256;i++)
{
n=i*i;
for(j=0,k=0;n!=0;j++,k++)
{
a[j]=n%10;
n/=10;
}
for(j=0;j<k;j++)
{
b[j]=a[k-1-j];
}
for(j=0,count=0;j<k;j++)
{
if(a[j]==b[j])
{
count++;
}
}
if(count==k)
{
printf("%d\n",i);
}
}
return 0;
}