N = input() a = N.count("1") b = N.count("3") if a+b == len(N): print(b) else: print(-1)