4195.The number of positions

Time Limit: 1s Memory Limit: 256MB

Petr stands in line of n people, but he doesn't know exactly which position he occupies. He can say that there are no less than a people standing in front of him and no more than b people standing behind him. Find the number of different positions Petr can occupy.

Input Format(From the terminal/stdin)

The only line contains three integers n, a and b (0 \le a,b \lt n \le 100).

Output Format(To the terminal/stdout)

Print the single number - the number of the sought positions.

Sample Input 1

Copy
3 1 1
 · · \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
5 2 3
 · · \n

Sample Output 2

Copy
3
 \n

Hints

The possible positions in the first sample are: 2 and 3 (if we number the positions starting with 1).

In the second sample they are 3, 4 and 5.

Submit

请先 登录

© 2025 FAQs