Given an unsigned 32-bit integer n, return an integer where all of n's even bits are swapped with their adjacent odd bits.
n
Input: n = 41 Output: 22
Input: n = 23 Output: 43