Given two integers `a` and `b`, return the sum of the two integers without using the operators `+` and `-`.
Bit Manipulation (XOR + Carry)
XOR gives the sum of bits without carry. AND shifted left gives the carry. Repeat until carry is zero.