More formally, find the number of ways of dividing a sum $S$ among $N$ numbers — $a_1, a_2, a_3, \dots, a_N$,
such that they are in strictly increasing order i.e. — $a_1 < a_2 < a_3 < \dots < a_n$,
given that $\sum_{i=1}^Na_i = S$ , $a_i >= 0$
Note that the order of the number is fixed.
Consider an example, $N = 3, S = 6$:
Total ways = 3
0, 1, 5
0, 2, 4
1, 2, 3
when $N = 3, S = 7$:
Total ways = 4
0, 1, 6
0, 2, 5
0, 3, 4
1, 2, 4
Edit:
The question's previous title asked for the probability, but to find probability I think we ultimately need to find such number of ways (I don't know if there is some other way). Feel free to answer in terms of probability or the number of such ways.