C = input() ans = 0 for i in range(1, len(C)): if int(C[:i]) > 0 and int(C[i:]) > 0 and C[i] != '0': ans += 1 print(ans)