Medium
Given two integers a and b with a <= b, return the bitwise AND of all numbers in the inclusive range [a, b].
a
b
a <= b
[a, b]
Input: a = 5, b = 7 Output: 4
Input: a = 0, b = 0 Output: 0
Input: a = 26, b = 30 Output: 24