记录编号 29284 评测结果 EEEEEEEEEEEEEEEEEEEEEEWEEEEEEEEEEEEEEEEEEEEEEEEEEE
题目名称 加法问题 最终得分 0
用户昵称 GravatarTruth.Cirno 是否通过 未通过
代码语言 Pascal 运行时间 0.017 s
提交时间 2011-10-20 22:02:25 内存使用 0.19 MiB
显示代码纯文本
program aplusb(input,output);
const
  OP='aplusb.in';
  ED='aplusb.out';
var
  a,b:real;
begin
  assign(input,OP);
  assign(output,ED);
  reset(input);
  rewrite(output);
  readln(a);
  readln(b);
  write((a+b):0:0);
  close(input);
  close(output);
end.