# coding utf-8

s = int(input())
if s[0] == 1 and set(s[1:]) == {3}:
    print(len(s)-1)
else:
    print(-1)