def leiaJargmine(sisend): kahendarv=list(sisend) koht=-1 while kahendarv[koht]=="1": koht=koht-1 kahendarv[koht]="1" koht=koht+1 while koht<0: kahendarv[koht]="0" koht=koht+1 return "".join(kahendarv) print(leiaJargmine("11011")) arv="10000" while arv!="11111": arv=leiaJargmine(arv) print(arv)