What is the output of the following code?pythondef count_up(n): for i in range(n): yield ig = count_up(3)print(next(g))print(next(g))