记录编号 16198 评测结果 AAAAAAAA
题目名称 删掉的边 最终得分 100
用户昵称 GravatarReimBurSe. 是否通过 通过
代码语言 C++ 运行时间 0.003 s
提交时间 2010-04-22 11:52:13 内存使用 0.26 MiB
显示代码纯文本
#include <iostream>   
using namespace std;   
  
int main()   
{   
    freopen("edges.in","r",stdin);   
    freopen("edges.out","w",stdout);   
    int n,m,t;   
    scanf("%d%d",&n,&m);   
    t=m-n+1;   
    printf("%d\n",t);   
    return 0;   
}