Number of integral solutions of the equation x1 + x2 +.... + xN = k
Given N and K. The task is to count the number of the integral solutions of a linear equation having N variable as given below: x1 + x2+ x3...+ xN-1+...+xN = K Examples: Input: N = 3, K = 3Output: 10Explanation: Possible solutions are: (1,1,1),(1,0,2),(2,0,1),(1,2,0),(2,1,0),(0,1,2),(0,2,1),(3,0,0),