The value of n can be 0,1,2,3....and so on
For example
If we have to select 2 numbers such that the sum of all them can be less than 2
Manually the combinations can be (0,0), (0,1), (1,0), (2,0), (0,2) and (1,1) So there are 6 ways
How do we solve it using permutation and combination for n numbers and sum m. I can't seem to understand this problem.
Thank you