#3 def multiplier_function(a = 1, b = 1, c = 1): return("The product of the arguments is " + str(a*b*c) + ". The product is the total when the values are multiplied together" ) result = multiplier_function() print(result) multiplier_function(2,2,2)