Is there a positive integer, when reversing its digits, it doubles?
That is;
if $n=a_{1}a_{2}a_{3}\cdots a_{k-1}a_{k}$, then $2n=a_{k}a_{k-1}a_{k-2}\cdots a_{1}$, where $a_k$ is the $k$th digit of $n$.
$n=25$ is not a solution since $52\ne50$ (it is only a good guess).
So basically you want
$\begin{array}\\ \ \ a_{1} a_{2}a_{3}\cdots a_{k-1}a_{k}\\ +\\ \ \ a_{1}a_{2}a_{3}\cdots a_{k-1}a_{k}\\ \hline \ \ a_{k}a_{k-1}a_{k-2}\cdots a_{2}a_{1}\\ \end{array}$
Which leads to either $2a_{k}=a_1$ or $2a_{k}-10=a_1$.
On the other hand, $2a_{1}=a_k$ or $2a_{1}+1=a_k$.
Thus we have four linear systems: \begin{cases} 2a_{k}=a_1 \\ 2a_{1}=a_k \end{cases} \begin{cases} 2a_{k}=a_1 \\ 2a_{1}+1=a_k \end{cases} \begin{cases} 2a_{k}-10=a_1 \\ 2a_{1}=a_k \end{cases} \begin{cases} 2a_{k}-10=a_1 \\ 2a_{1}+1=a_k \end{cases} Only the first one has an integer solution $(0,0)$ which does not satisfy the original requirement