Write the recurrence of the recursive case (not the base case) for mystery(n, 1) where the initial value of the parameter step = 1.
a) mystery(n-1, 1)
b) mystery(n+1, 1)
c) mystery(n, 2)
d) mystery(n, 0)