比赛 | 20110311 | 评测结果 | RRRRRRRR |
---|---|---|---|
题目名称 | 删掉的边 | 最终得分 | 0 |
用户昵称 | Pom | 运行时间 | 0.000 s |
代码语言 | C++ | 内存使用 | 0.00 MiB |
提交时间 | 2011-03-11 19:23:35 | ||
#include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> using namespace std; int main() { int n,m; freopen("edge.in","r",stdin); freopen("edge.out","w",stdout); scanf("%d%d",&n,&m); printf("%d\n",m-n+1); return 0; }