Check if the string satisfies the given condition
Given a string str, the task is to check whether the count of vowels in the given string is prime or not. If it's prime then print YES else print NO. Examples: Input: str = "geeksforgeeks" Output: YES Count of vowels is 5 (e, e, o, e and e) which is prime. Input: str = "aeioua" Output: NO Approach: