lo logre resolver .. no me tiraba nada.. estaban mal los contadores
program ej7;
uses crt;
var
texto:string;
code,x,cont:integer;
begin
cont:=0;
x:=0;
writeln('ingrese un texto');
readln(texto);
repeat
cont:=cont+1;
until (texto[cont]>='0') and (texto[cont]<='9') ;
texto:=copy(texto,cont,2);
val(texto,x,code);
if code = 0 then begin
writeln(x*2);
end;
readkey;
end.