Question 2: Lambda the Environment Diagram

Try drawing an environment diagram for the following code and predict what Python will output.

>>> a = lambda x: x * 2 + 1
>>> def b(b, x):
...     return b(x + a(x))
>>> x = 3
>>> b(a, x)
______