Snuke has N integers: $1,2,\cdots N $. He will choose K of them and give those to Takahashi.
How many ways are there to choose K consecutive integers?
Input is given from Standard Input in the following format:
1 | N K |
Print the answer.
1 | 3 2 |
1 | 2 |
There are two ways to choose two consecutive integers: (1,2) and (2,3).
1 | 13 3 |
1 | 11 |
This is an very easy problem. If you have three numbers $1, 2, 3$and want the length of the consecutive subsequence be two, the answer is $3-2 +1$, because you can choose $1, 2$ or $1, 3$.
1 |
|