import re N = input() if re.match(r'^13+$', N): print(len(N)-1) else: print(-1)