In the blank spaces below, write the output produced by each…

In the blank spaces below, write the output produced by each line of the following program, as it would appear on the console. def double_up(ten, two, twenty): ten = ten // 2 print(two, “is half of”, twenty, “plus”, ten); return ten + two def main(): ten = 40 fourty = 30 thirty = 20 fifty = 10 twenty = 50 sixty = double_up(fifty, ten, thirty) fifty = double_up(twenty, 70, sixty) double_up(ten, fourty, fifty) fifty = 10 ten += double_up(sixty, sixty * 2, ten) double_up(fifty, 20, ten) main() Line 1: Line 2: Line 3: Line 4: Line 5: