#pragma GCC optimize("O3") #include #define ll long long #define rep2(i,a,b) for(ll i=a;i<=b;++i) #define rep(i,n) for(ll i=0;i=b;i--) #define pii pair #define pll pair #define pq priority_queue #define pb push_back #define eb emplace_back #define veci vector #define vecll vector #define vecpii vector #define vec2(a,b) vector(a,vec(b)) #define vec2ll(a,b) vector(a,vecll(b)) #define vec3(a,b,c) vector>(a,vec2(b,c)) #define vec3ll(a,b,c) vector>(a,vec2ll(b,c)) #define fi first #define se second #define all(c) begin(c),end(c) #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0); #define lb(c,x) distance(c.begin(),lower_bound(all(c),x)) #define ub(c,x) distance(c.begin(),upper_bound(all(c),x)) using namespace std; int in() {int x;cin>>x;return x;} ll lin() {ll x;cin>>x;return x;} template inline bool chmax(T& a,T b){if(a inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} template inline void print(pair p){cout<<"("< inline void print(vector> v){for(auto e:v)print(e); cout< inline void print(T v){for(auto e:v)cout< istream& operator >> (istream& is, vector& vec){ for(T& x:vec) is >> x; return is; } const ll INF=1e9+7; ll dp[10010]; ll a[10010]; vector cnt(10010,0); ll n; ll rec(ll x){ a[x]++; if(x==n) return 0; if(dp[x]=1){ dp[x]=min(dp[x],rec(x-cnt[x])+1); } return dp[x]; } int main() { cin >> n; rep(i,10010){ dp[i]=INF; } rep(i,n+1){ for(ll j=0;j<20;j++){ if((i>>j) & 1){ cnt[i]++; } } } if(rec(1)>=INF){ cout << -1 << endl; return 0; } cout << rec(1)+1 << endl; return 0; }