First X vowels from a string
Given a string str and an integer X, the task is to find and print the first X vowels from str. If the total vowels in str is < X then print -1. Examples: Input: str = "GeeksForGeeks", X = 3 Output: eeo 'e', 'e' and 'o' are the first three vowels in the given string. Input: str = "softcopy", X =