After this shallow copy, what are the final values of `a`?import copy a = [[1, 2], [3, 4]] b = copy.copy(a) b[0][0] = 99 b.append([5, 6]) print(a)