Complete execution flow of the following program
Which line runs next? Click it!
def calculate(a, b): if a == 'first' and b < 0: return b + b elif a != 'first' and b > 0: return b * 2 return b
>>> calculate("third", 3) 6 >>> calculate('first', 4) 4 >>>