N = int(input()) S = list(str(N)) if S[0]=='1': if len(set(S)) == 2: print(len(S)-1) else: print(-1) else: print(-1)