Count numbers in range [L, R] whose sum of digits is a Prime Number
Given two integers L and R, the task is to count all the numbers in the range [L, R] whose sum of digits is a prime number. Examples: Input: L = 1, R = 10 Output: 4Explanation: Numbers in the range L(= 1) to R(= 10), whose sum of digits is a prime number are {2, 3, 5, 7}. Therefore, the required out