''' Purpose: print the sum of a user-supplied list of values Email id: Name: ''' # get the input ... # convert input into a list of strings ... # take the numeric strings one-by-one to accumulate a list of integers; # i.e., a loop is needed ... # by accumulation get the product of the integer list values one-by-one; # i.e., a loop is needed and a accumulator. ... # print the integer list and its product ...