Var v1,v2,t1,t2:longint; begin write('Write 2 speeds through the space: ');read(v1);readln(v2); write('Write 2 time interval through the space: ');read(t1);readln(t2); writeln('Average speed: ',(v1-v2)/(t1-t2):0:2); // здесь можешь формулу поменять если что end.
v1,v2,t1,t2:longint;
begin
write('Write 2 speeds through the space: ');read(v1);readln(v2);
write('Write 2 time interval through the space: ');read(t1);readln(t2);
writeln('Average speed: ',(v1-v2)/(t1-t2):0:2); // здесь можешь формулу поменять если что
end.