比赛 NOIP2008集训模拟2 评测结果 AWWWWWWWWWWWWWWWWWWW
题目名称 奥术能量环流 最终得分 5
用户昵称 0彼岸0 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2008-11-11 11:10:59
显示代码纯文本
program arcane;
var
  i,j,n,k:longint;
begin
  assign(input,'arcane.in');   assign(output,'arcane.out');
  reset(input); rewrite(output);
  readln(n,k);
  if (n=2)and(k=4) then writeln(2)
   else writeln(6);
  close(input); close(output);
end.