记录编号 58783 评测结果 EEEEEEEEEEEEEEEEEEEEEEWEEEEEEEEEEEEEEEEEEEEEEEEEEE
题目名称 加法问题 最终得分 0
用户昵称 Gravatargungnir 是否通过 未通过
代码语言 Pascal 运行时间 0.017 s
提交时间 2013-04-26 16:43:19 内存使用 0.19 MiB
显示代码纯文本
var a,b:real;
    c:integer;
begin
assign(input,'aplusb.in'); reset(input);
assign(output,'aplusb.out'); rewrite(output);
readln(a);
readln(b);
c:=round(a+b);
writeln(c);
close(input);close(output);
end.