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

题目解答

题目:
program test01;
var
x,y,s,p:integer;
begin
readln(x,y);
s:=x+y;p:=x-y;
if x<y then p:=y-x;
s:=s-p;
writeln(s);
end.
输入:
13 31
输出:26
考点:
分析:
解答:
评论:
老师: