elainaotoole4261 elainaotoole4261 11-03-2024 Computers and Technology contestada 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.