using the Peano's axioms we can give a description of the set of natural numbers.
Let's consider the functions
$s: \Bbb N\to \Bbb N$ defined by $s(n)=n+1$
and
$f^n=\begin{cases} id, &\text{ if } n=0 \\ f\circ f^{n-1},&\text { else} \end{cases}$
We can define the sum of two natural numbers in the following way: $n+m= s^n(m)$
How can I define the product using the power function and the function $s$?
Addition is defined as repeated application of the successor function $s$.
Similiarly, multiplication is defined as repeated addition.
If $n+m=s^n(m)\equiv \text{add}_n(m) = \text{add}_n \circ \text{add}_m(0)$, then we define multiplication by
$$n\cdot m = \text{add}_n^{m}(0) = (s^n)^m(0)$$