Count Vowels

Easy

📝 Description

Count the number of vowels in a string

Input Format

A string

Output Format

Number of vowels (a,e,i,o,u)

Constraints

1 ≤ string.length ≤ 1000

🔍 Sample Input

"Hello World"
            

✅ Sample Output

3
            

Code Editor

Please login to run and submit code.

Shortcuts: Ctrl+Enter to submit, Ctrl+Shift+R to run