Given two integers a and b, swap their values without using a temporary variable, and return the swapped pair as an array [new_a, new_b] which equals [b, a].
Input: A JSON object {"a": <integer>, "b": <integer>}.
Output: Return an array of two integers [b, a] in that order.
Input: {"a":3,"b":9}
Output: [9,3]
Explanation: After the XOR swap a becomes 9 and b becomes 3 -> [9,3].Input: {"a":-2,"b":5}
Output: [5,-2]
Explanation: Swapping gives [5,-2].-10^9 <= a, b <= 10^9