21. What will be the output of the following Python code?
def f(x):
yield x+1
print("test")
yield x+2
g=f(9)
def f(x):
yield x+1
print("test")
yield x+2
g=f(9)