for example, I get
[[], [2, 3, 4, 5]]
[[1], [3, 4, 5]]
[[1, 2], [4, 5]]
[[1, 2, 3], [5]]
[[1, 2, 3, 4], []]
And I want to convert first list into [2,3,4,5], next [1,3,4,5], et cetera. I try to mutiply them all together but of course a list cannot mutiply a interger.