#include #define rep(i,n) for(int i=(0);i<(n);i++) using namespace std; typedef long long ll; typedef long double ld; template bool chmax(T &a, const T &b) { if (a bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } int main(){ cin.tie(0); ios::sync_with_stdio(false); ll a[6] = {100003, 100019, 100043, 100057, 100069, 100103}; set st; st.insert(1); rep(i, 6) rep(j, 6){ st.insert(a[i] * a[j]); } int n; cin >> n; auto itr = st.begin(); rep(i, n-1) itr++; cout << *itr << endl; }