不是VIP会员,不能显示答案

题目解答

题目:
Var a,b: integer;
begin readln(a, b);
writeln(a, '+', b, '=', a+b);
end.
输入:3 5
输出:3+5=8
考点:
分析:
解答:
评论:
老师: