#include using namespace std; using uint = unsigned int; using ll = long long; using ull = unsigned long long; template using V = vector; template using VV = V>; template using VVV = V>; template using VVVV = VV>; #define rep(i,n) for(ll i=0ll;i void chmin(T& t, const U& u) { if (t > u) t = u; } template void chmax(T& t, const U& u) { if (t < u) t = u; } // cin.tie(nullptr); // ios::sync_with_stdio(false); // cout << fixed << setprecision(20); bool prime(ll n){ if(n<=1) return 0; if(n==2) return 1; for(ll i=3;i*i<=n;i+=2) if(n%i==0) return 0; return 1; } void solve(){ ll n; cin >> n; V dp(20010, INF); dp[0] = 0; REP(i,2,20001) if(prime(i)){ for(ll j=n;j>=i;j--) chmin(dp[j], dp[j-i]+1); } if(dp[n] == INF) dp[n] = -1; cout << dp[n] << endl; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int t=1; // cin >> t; rep(i,t) solve(); }