#sum_of_values_and_indices lists = [1, 2, 3] def sum_of_values_and_indices(lists): total = 0 for list in lists: total += list total += lists.index(list) return(total) sum_of_values_and_indices(lists)