using namespace std; int n;
int main() { cin>>n;
for(int i=2;i<=n-1;i++) { int j=n/i; if(i*j==n) { cout<<j<<" "; return 0; } } return 0;
}