Check if N-factorial is divisible by X^Y
Given three integers N, X and Y, the task is to check that if N! is divisible by XYExamples: Input: N = 10, X = 2, Y = 8 Output: YES Explanation: Factorial of 10 is - 3628800 and the value of XY = 28 = 256 Since, 3628800 is divisible by 256, therefore answer is YES.Input: N = 5, X = 2, Y = 4 Output: