Const m : array[0..9] of String = ('zero','one','two','three','four','five','six','seven','eight','nine');Var s : String; i : Integer;Begin Write('Введите цифры: '); Readln(s); For i := 1 to Length(s) do If s[i] in ['0'..'9'] then Writeln(m[Ord(s[i])-Ord('0')]);end.