Complete execution flow of the following program
Which line runs next? Click it!
def calculate(): sub() sub() def sub(): a = 50 b = a - 40 print(b) calculate()
10 10 >>>