Participate in exhilarating programming contests, solve unique algorithm and data structure challenges and be a part of an awesome community.
In this problem, you will have to print the -th prime number. The first few prime numbers are given below:
2, 3, 5, 7, 11, 13, 17, 19, 23, 29, ...
2 is the 1st prime, 3 is the 2nd prime, 5 is the 3rd prime, ...
The input will contain a single integer ().
Print the -th prime number.
Input | Output |
---|---|
1 | 2 |
Input | Output |
---|---|
2 | 3 |
62% Solution Ratio
Wl.ReinoEarliest,
Istyaq.026725Fastest, 0.0s
riadroxLightest, 131 kB
bokaifShortest, 52B
Login to submit