#include #include #include #include #include #include #include #include #include #include #include #include #include #include #define rep(i, a, b) for (int i = (a); i < (b); ++i) #define all(x) (x).begin(), (x).end() #define MOD 1000000007 #define int long long using ll = long long; using namespace std; const int INF = 1LL << 50; using P = pair; template bool chmin(T &a, T b) { if (a > b) { a = b; return true; } else { return false; } } template bool chmax(T &a, T b) { if (a < b) { a = b; return true; } else { return false; } } struct Setup { Setup() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); } } SETUP; signed main() { string s; cin >> s; bool ok = true; rep(i, 0, (int)s.size()) { if (i == 0) { if (s[i] != '1') ok = false; } else { if (s[i] != '3') ok = false; } } if (s.size() <= 1) ok = false; if (ok) { cout << s.size() - 1 << endl; } else { puts("-1"); } }