#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); int N; cin >> N; vector c(505050,false); c[0] = true; for(int i=2;i<=100000;i++){ if(c[i]) continue; int j = i; while(j < 505050){ c[j] = true; j += i; } } rep(i,505050){ if(!c[i]){ N--; if(N == 0){ cout << i << endl; return 0; } } } }