首页 > 其他 > 详细

浙南联合训练赛 H - The number of positions

时间:2018-05-26 20:56:36      阅读:329      评论:0      收藏:0      [点我收藏+]

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

The only line contains three integers na and b (0?≤?a,?b?<?n?≤?100).

Output

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

Examples

Input
3 1 1
Output
2
Input
5 2 3
Output
3

Note

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.

#include <iostream>
#include <stdio.h>
#include <algorithm>
using namespace std;

int main()
{
   int n,a,b;
   scanf("%d %d %d",&n,&a,&b);
   printf("%d\n",min(n-a,b+1));
}

 

浙南联合训练赛 H - The number of positions

原文:https://www.cnblogs.com/baobao2201128470/p/9094130.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!