Given two (2) signed integer numbers, A and B, where:
- size = ( Integer size int = 4 bytes* = 32 bits ) - 1
- -2size ≤ A ≤ 2size-1, and
- -2size ≤ B ≤ 2size-1
Find the larger number between variables A and B, without using conditional operators. Provide a solution to the following:
- Assign 0 to X, if A = B, or assign the larger number between A and B
- Assign the larger number between A and B to Y, or assign either A or B, if A = B