记录编号 79268 评测结果 AAAAA
题目名称 BPlusA 最终得分 100
用户昵称 GravatarTA 是否通过 通过
代码语言 Pascal 运行时间 0.000 s
提交时间 2013-11-05 12:00:34 内存使用 0.00 MiB
显示代码纯文本
var
 n:ansistring;
begin
 assign(input,'bplusa.in');
 assign(output,'bplusa.out');
 reset(input);
 rewrite(output);
 //while not(eof) do
  //begin
   readln(n);
   writeln('0 ',n);
  //end;
 close(input);
 close(output);
end.