#include <bits/stdc++.h>
#include <string>
using namespace std;
int main() {
    for(int i=1;i<=256;i++)
    {
        string str;
        str=to_string(i*i);
        string str1=str;
        reverse(str.begin(),str.end());
        if(str1==str) cout<<i<<endl;
    }

}
// 64 位输出请用 printf("%lld")