#include using namespace std; int main() { vector x = {7, 11, 13, 17, 19, 23, 29, 47, 59, 61}; int n; cin >> n; cout << x[n - 1] << '\n'; }