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