Your task is to print an array of the first palindromic prime numbers. For example, the first palindromic prime numbers are .
A single line of input containing the integer .
You are not given how big is.
Print an array of the first palindromic primes.
Sample Input
5
Sample Output
[2, 3, 5, 7, 11]