def numero(x,y): if (x,y) == (0,0): return 0 elif y == 0: return 1 + numero(0,x-1) else: return 1 + numero(x+1,y-1)