比赛 20100422 评测结果 AAAAAAAA
题目名称 删掉的边 最终得分 100
用户昵称 lc 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2010-04-22 11:02:02
显示代码纯文本
#include<iostream>
#include<cstring>
using namespace std;
int N,M;

void prep()
{
	scanf("%d%d",&N,&M);
}

void work()
{
	printf("%d\n",M-(N-1));
}

int main()
{
	freopen("edges.in","r",stdin);
	freopen("edges.out","w",stdout);
	prep();
	work();
	return 0;
}