记录编号 67181 评测结果 AWAWWAAAAAAAWAAWWWWAWWAWAWAAWWWAAWAWWWWWAAWWWWWAAW
题目名称 加法问题 最终得分 46
用户昵称 Gravatar姜宝兴 是否通过 未通过
代码语言 Pascal 运行时间 0.018 s
提交时间 2013-08-09 16:46:29 内存使用 0.19 MiB
显示代码纯文本
program h(input,output);
var
a,b:real;
c:integer;
begin
 assign(input,'aplusb.in');
 assign(output,'aplusb.out');
 reset(input);
 rewrite(output);
 readln(a,b);
 c:=trunc(a+b);
write(c);
close(input);
close(output);
end.