Is it possible to take a whole number $x$ and produce another whole number $y$ which decimal form would have all digits from $x$ duplicated (e.g. $123 \rightarrow 112233$) using solely arithmetic operations?
This question is inspired by programming questions like this one - the idea is to have an elegant solution which avoids using conversion to a string.