Easy-to-Pronounce Words

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

We define a word as easy-to-pronounce if every vowel in the word is immediately followed by a consonant and every consonant in the word is immediately followed by a vowel. The first letter of the word can be a vowel or consonant. Assume that the vowels are: a, e, i, o, u (note that the letter y is not a vowel, i.e., it is a consonant).

Given a word, print 1 (one) if it is easy-to-pronounce, 0 (zero) otherwise.

입력

There is only one input line; it contains a word consisting of 1-30 lowercase letters (starting in column 1). Assume that there will not be any characters other than the lowercase letters in the input.

출력

Print the appropriate message as described above.