Minimum positive integer divisible by C and is not in range [A, B]
Given three positive integers A, B and C. The task is to find the minimum integer X > 0 such that: X % C = 0 andX must not belong to the range [A, B] Examples: Input: A = 2, B = 4, C = 2 Output: 6Input: A = 5, B = 10, C = 4 Output: 4 Approach: If C doesn't belong to [A, B] i.e. C < A or C >