swap number pairs

Swap the numbers in a bunch of 2-element arrays.

Input

[2, 1], [5, 4]
[6, 3]
[7, 4]
[8, 2], [12, 11]

Output

[1, 2], [4, 5]
[3, 6]
[4, 7]
[2, 8], [11, 12]