Check if it is possible to move from (a, 0) to (b, 0) with given jumps
Given two points, i.e. (a, 0) to (b, 0). The task is to check whether it is possible to move from (a,0) to (b,0) or not. One can move as (a, 0), (a+x, 0), (a+x+1, 0), (a, 2*x, 0), (a, 2*x+1, 0)...... Examples: Input: a = 3, x = 10, b = 4Output: No Input: a = 3, x = 2, b = 5Output: Yes Approach: An a