Consider the MWE for creating an image below using tikZ. But it fails. Any idea to do that?
\documentclass[statementpaper,11pt,twoside]{memoir}
\usepackage{tikz}
\begin{document}
\begin{center}
\begin{tikzpicture}[digits/.style={inner xsep=0pt, inner ysep=2pt}]
\node[digits] (num) at (0,0) {\large $23 \times 55$};
\draw[<->,thick] ([xshift={width("$23$")+1ex/2}]num.north west) to [bend left=45] ([xshift={width("$23 \times 55$")-1ex/2}]num.north west);
\draw[<->,thick] ([xshift={width("$2$")+1ex/2}]num.north west) to [bend left=45] node[above] (label above) {\small Multiply} ([xshift={width("$23 \times 5$")-1ex/2}]num.north west);
\draw[<->,thick] ([xshift={width("$1$")-1ex/2}]num.south west) to [bend right=45] node[below] (label below) {\small Multiply} ([xshift={width("$114 \times 3$")-1ex/2}]num.south west);
\end{tikzpicture}
\end{center}
\end{document}
Desired output:
Note: The question is not an exact duplicate of this. Because, it actually deals with two numbers, not two mathematical expressions like the identified question.

