Number of N length sequences whose product is M
Given two integers N and M, the task is to find the count of possible sequences a1, a2, ... of length N such that the product of all the elements of the sequence is M.Examples: Input: N = 2, M = 6 Output: 4 Possible sequences are {1, 6}, {2, 3}, {3, 2} and {6, 1}Input: N = 3, M = 24 Output: 30 Appro