#include using namespace std; int main() { int N; cin >> N; for(int i=N-1; i>=1; --i) if(N%i == 0) { cout << i << endl; return 0; } }