#include<iostream> using namespace std; int main(){ int n; cin>>n; for(int i=2;;i++) if(n%i==0){ cout<<max(i,n/i); break; } }