Medium
Given two integers a and b, return their sum without using the operators + or -.
a
b
+
-
Input: a = 1, b = 2 Output: 3
Input: a = 2, b = 3 Output: 5