#include using namespace std; typedef long long int ll; #define rep(i, n) for (int i = 0; i < (n); i++) int main() { cin.tie(0); ios::sync_with_stdio(false); string s, t = "1000000007"; //1000007 //100000000007 cin >> s; if (s.size() == t.size()) cout << 0 << endl; else if (s.size() > t.size()) cout << s.size() - t.size() << endl; else cout << t.size() - s.size() << endl; return 0; }