If $m$ and $n$ are reversed numbers (like $123$ and $321$) and $m * n = 1446921630$ , find $(m+n)$.
What I Tried: I found $1446921630 = 2 * 3^5 * 5 * 7 * 11^2 * 19 * 37$ , but that did not really give me useful information.
A little information I got is that $m$ and $n$ each will have a factor of $11$ , and at-least $1$ factor of $3$, as both will be divisible by $3$ and $11$ .
I could have assumed the numbers to be of the form $10x + y$ or something, but I can't as I don't know how many digits both $m$ and $n$ will have, and that will more like Trial and Error.
Another thing is that among $m$ and $n$, one will be even and one will be odd. The odd number will start with an even digit which is not $0$, and the even number cannot end with $0$. Also $5$ should divide the odd number and it will end with $5$. That is all I could conclude.
Can anyone help me?
Observe that $mn \approx 1.44 \times 10^9$, $5 \mid mn$ and $4 \not\mid mn$, so one of the two numbers is odd ending with the digit $5$ and another number is even but not divisible by $4$. WLOG, assume $5 \mid m$ and $2 \mid n$. Make an estimate $n \approx 5 \times 10^4$, so that $m \approx 2.88 \times 10^4$. This drives us to the guess that the first two digits of $m$ are $2$ and $8$. We now have $28 ?? 5$.
Use the criteria that $9$ and $11$ divides both $m$ and $n$ to exhaust all possible candidates. We focus on these two criteria first since these criteria are invariant upon reversion of digits. By trial, it's easy to find that $m = 28215$, so $n = 51282$, and thus $m + n = 79497$.