| 记录编号 | 23634 | 评测结果 | AAAAAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 437.删掉的边 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.017 s | ||
| 提交时间 | 2011-03-16 19:16:33 | 内存使用 | 0.25 MiB | ||
#include<cstdio>
using namespace std;
int main()
{
freopen("edges.in","r",stdin);
freopen("edges.out","w",stdout);
int m,n;
scanf("%d%d",&m,&n);
printf("%d",n-m+1);
return 0;
}