记录编号 130253 评测结果 AAAAAAAAAA
题目名称 约数问题 最终得分 100
用户昵称 Gravatarhelloworld123 是否通过 通过
代码语言 Pascal 运行时间 0.001 s
提交时间 2014-10-21 21:37:25 内存使用 0.17 MiB
显示代码纯文本
program cogs1757;
var
  i,j:longint;
  n:longint;
begin
   assign(input,'pian_fen.in'); reset(input);
   assign(output,'pian_fen.out'); rewrite(output);
    readln(n);
    writeln('No!');
   close(input); close(output);
end.