#include #define rep(i,n) for(int i = 0; i < (n); ++i) #define rrep(i,n) for(int i = 1; i <= (n); ++i) #define drep(i,n) for(int i = (n)-1; i >= 0; --i) #define srep(i,s,t) for (int i = s; i < t; ++i) using namespace std; typedef long long int ll; typedef pair P; #define yn {puts("Yes");}else{puts("No");} /* Max_Prime以下の素数をprimes[]に格納 */ const int Max_Prime = 1000000; int tmp_primes[Max_Prime]; vector primes; void PrimeInit() { rep(i,Max_Prime)tmp_primes[i] = 1; tmp_primes[0] = 0; tmp_primes[1] = 0; rep(i,Max_Prime){ if(tmp_primes[i] == 0)continue; int j = 2; while(i * j <= Max_Prime){ tmp_primes[i*j] = 0; j++; } } rep(i,Max_Prime){ if(tmp_primes[i])primes.push_back(i); } } int main(){ PrimeInit(); vector v; rep(i,primes.size()){ if(primes[i] > 100000){ v.push_back(primes[i]); } } ll ans[100]; rep(i,10){ rep(j,10){ ans[i*10+j] = v[i] * v[j]; } } sort(ans,ans+100); int n; cin >> n; if(n == 1){ cout << 1 << endl; }else{ n--; cout << ans[n] << endl; } return 0; }