Replace Vowels With a Star
Replace every vowel in a word with a star character.
Input format
A single line with one lowercase word S.
Output format
Print S with every vowel (a, e, i, o, u) replaced by the character *.
Constraints
- Values fit in a 64-bit signed integer
- Trailing whitespace and a trailing newline are ignored by the judge
Read from stdin, write to stdout. Sample cases below show the exact format.
Sample cases
Example 1
Input
bananaExpected output
b*n*n*Example 2
Input
codeExpected output
c*d*