Find sum of all odd perfect squares in the range [L, R]
Given two integers L and R. The task is to find the sum of all the odd numbers which are perfect square in the range [L, R]. Examples: Input: L = 1, R = 9Output: 10Explanation: The odd Numbers in the range are 1, 3, 5, 7, 9 and only 1, 9 are perfect squares of 1, 3. So, 1 + 9 = 10. Input: L = 50, R