Bitwise and (or &) of a range
Given two non-negative long integers, x and y given x <= y, the task is to find bit-wise and of all integers from x and y, i.e., we need to compute value of x & (x+1) & ... & (y-1) & y.7 Examples: Input : x = 12, y = 15Output : 12 12 & 13 & 14 & 15 = 12 Input : x = 10,