比赛 20110311 评测结果 AAAAAAAA
题目名称 删掉的边 最终得分 100
用户昵称 绝对零度 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2011-03-11 19:57:10
显示代码纯文本
  1. program edges;
  2. var a:array[1..100,1..100] of longint;
  3. i,j,k,l,m,n:longint;
  4.  
  5. begin
  6. assign(input,'edges.in');
  7. reset(input);
  8. assign(output,'edges.out');
  9. rewrite(output);
  10. readln(n,m);
  11. writeln(m-n+1);
  12. close(input);
  13. close(output);
  14. end.