Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int a[39] = {
- 2, 3, 5, 7, 13, 17, 19, 31, 61, 89, 107, 127,
- 521, 607, 1279, 2203, 2281, 3217, 4253, 4423,
- 9689, 9941, 11213, 19937, 21701, 23209, 44497,
- 86243, 110503, 132049, 216091, 756839, 859433,
- 1257787, 1398269, 2976221, 3021377, 6972593
- };
- int n, k;
- cin >> n;
- for(int i=0; i<n; i++)
- {
- cin >> k;
- cout << a[k-1] << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment