9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
|
#!/usr/bin/python3
|
||
|
|
||
|
import sys, re
|
||
|
for line in sys.stdin:
|
||
|
if (re.search(r'^\D*[AEIOUaeiou]\D*$', line)):
|
||
|
print('true')
|
||
|
else:
|
||
|
print('false')
|