Uses crt; var a,k:integer; begin wrute('Введи число: '); readln(a); repeat a:=a div 10; inc(k); until a=0; writeln('Количество цифр: ',k); end.