Question: 
Write a function to add the given list to the given tuples.


Model's Code:
def add_lists(lst, tup):
    return tup + tuple(lst)



Sample Correct Code:
def add_lists(test_list, test_tup):
  res = tuple(list(test_tup) + test_list)
  return (res) 


Asserts:
assert add_lists([5, 6, 7], (9, 10)) == (9, 10, 5, 6, 7)
assert add_lists([6, 7, 8], (10, 11)) == (10, 11, 6, 7, 8)
assert add_lists([7, 8, 9], (11, 12)) == (11, 12, 7, 8, 9)


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 106 of 974: 81/106 (76.41509433962264%): success