记录编号 72833 评测结果 AAAA
题目名称 加法问题 最终得分 100
用户昵称 Gravatar翟佳麒 是否通过 通过
代码语言 Pascal 运行时间 0.000 s
提交时间 2013-10-19 11:18:42 内存使用 0.17 MiB
显示代码纯文本
program p1;
var a,b:real;
begin
assign(input,'aplusb.in');
reset(input);
assign(output,'aplusb.out');
rewrite(output);
read(a,b);
write(a+b:0:0);
close(input);
close(output);
end.