#include using namespace std; int main() { string S; ios::sync_with_stdio( false ); cin.tie( 0 ); cin >> S; cout << abs( (int) S.size() - 10 ) << endl; return 0; }