Merging list

How can I merge two separate lists in such a way that it will have one value from one list another from the other list and again from the first list and again from the second list.

meaning to make the merge list like this

0 (0, 0, 0) - index 0 from the first list

1 (0, 10, 0) - index 0 from the second list

2 (10, 0, 0) - index 1 from the first list

3 (10, 10, 0) - index 1 from the second list

4 (20, 0, 0) - index 2 from the first list

5 (20, 10, 0) - index 2 from the second list

and so on…

Try to use Weave.