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 slogan(one, four, two): print(four, “minus”, two, “is”, one) one = one + “1” def main(): four = “ten” one = “cat” twelve = “two” two = “dog” three = four + “4” slogan(two, twelve, one) slogan(one, “twelve”, three) slogan(one, four, twelve) slogan(twelve + “2”, four, twelve) slogan(“one”, “mouse”, four) main() Line 1: Line 2: Line 3: Line 4: Line 5: