Given two integers a and b, return the sum of the two integers without using the operators + or -.
Input: a = 1, b = 2 Output: 3 Explanation: 1 + 2 = 3, computed using only bitwise operations.
Input: a = 2, b = 3 Output: 5 Explanation: 2 + 3 = 5, computed using only bitwise operations.
-1000 <= a, b <= 1000a = 1, b = 2