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