Function calc_sum() was copied and modified to form the new…
Function calc_sum() was copied and modified to form the new function calc_product(). Which line of the new function contains an error?def calc_sum(a, b): s = a + b return sdef calc_product(a, b): # Line 1 p = a * b # Line 2 return s # Line 3