fork download
  1. c, v = '', ''
  2. for i in input():
  3. if i in 'aeiou':
  4. v += i
  5. elif i != ' ':
  6. c += i
  7. print c
  8. print v
Success #stdin #stdout 0.01s 7856KB
stdin
"there is no dana only zuul"
stdout
thrsndnnlyzl
eeioaaouu