N = int(input(),2) ans = 0 while N: if N&1==0: N >>= 1 elif N&3==1: ans += 1 N >>= 2 else: ans += 1 N += 1 print(ans)