#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); long long n; cin >> n; for(long long i = 3; i * i <= n; i++){ if( n % i == 0) { cout << i << endl; return 0; } } cout << n << endl; return 0; }