Program z2;
var
x: integer;
y: real;
begin
writeln(‘x>’);
readln(x);
y:=x+2.5;
y:=y*x;
y:=y-1;
y:=y+1;
write(‘y=’,y:4:2);
end.