Program Shunn;uses crt;const m=30;const n=10;var i: integer;begin writeln('*** alphaues is thinking... ***'); writeln('*** OK ***'); for i:=m downto n do writeln('Число: ',i,' Удвоение: ',2*i);end.
Program Shunn;
uses crt;
const m=30;
const n=10;
var
i: integer;
begin
writeln('*** alphaues is thinking... ***');
writeln('*** OK ***');
for i:=m downto n do
writeln('Число: ',i,' Удвоение: ',2*i);
end.