#include<bits/stdc++.h> using namespace std; int main() { int n,i; cin>>n; for(i=n-1;i>=2;i--) { if(n%i==0) { cout<<i; break; } } }