Given an integer n, return the smallest prime palindrome number that is greater than or equal to n.
n = lower bound
smallest prime palindrome >= n
Example 1:
Input:
n = 6
Output:
7
Explanation:
7 is both prime and a palindrome.
Example 2:
Input:
n = 8
Output:
11
Explanation:
11 is the next prime palindrome.