What does this code print?from functools import reduce\nimport operator\nprint(reduce(operator.mul, [1, 2, 3]))