#include <bits/stdc++.h> using namespace std; int main() { for(int i =1000;i<=9999;i++){ int j = i*9; string s1 = to_string(i),s2=to_string(j); reverse(s2.begin(),s2.end()); if(s1==s2)cout<<i<<endl; } } // 64 位输出请用 printf("%lld")