I would like to solve this recurrence relation:
$a_{m,n}=a_{m-1,n}+a_{m,n-1}$ with $a_{0,0}=0, a_{m,0}=1, a_{0,n}=1$
Its outputs form the Tartaglia triangle,
the solution should be just the combinations...
$a{m,n}=Binomial(m+n,n)$
But when I try to solve it with Mathematica
RSolve[{a[m, n] == a[-1 + m, n] + a[m, -1 + n], a[0, 0] == 0,
a[m, 0] == 1, a[0, n] == 1}, a[m, n], {m, n}]
It just outputs the same input unevaluated.
What am I doing wrong?

a[1,0]anda[0,1]- agentp