Consider the following recursive function:
def mystery(a, b):
if a < 0:
return 1
else:
return 2 + mystery(a b, b)
give an example of specific values of a and b that would produce infinite recursion, and explain why it would occur.