Express addition of natural numbers ($+$) in structure $(N;=;S;\cdot)$ where $S(n)$ $\rightarrow$ $n + 1$
I need to exress operationd of addition in this structure. I tried to: $c = a + b = a * S(0) + b * S(0) $ but stucked. Also tried $a = S(a-1) = S(S(a-2))$, $S(a-1) * S(b-1) = ab $
Please help me a have to send the solution of this problem today.
Definition:
$m + 0 = m$
and
$m + S(n) = S(m+n)$
for all natural numbers $m,n\geq 0$.
Define $1 = S(0), 2=S(1), 3=S(2), \ldots$.
Then $n+1 = n+ S(0) = S(n+0) = S(n)$. This shows that $S$ is the successor function.
Moreover, for instance,
$1+1 = 1 + S(0) = S(1+0) = S(1) = 2$.