Var
n:integer;
begin
Write('Введите проверяемое число: '); Read(n);
n:=Abs(n); { от ввода отрицательных }
while n>0 do begin
if n mod 10 <> 1 then begin
Writeln('Не все цифры - единицы');
exit
end;
n:=n div 10
end;
Writeln('Да, все цифры числа - единицы')
end.