fork download
  1. word = input()
  2. vowels = "aeiou"
  3.  
  4. if vowels in word:
  5. print (vowels)
  6.  
Success #stdin #stdout 0.02s 9100KB
stdin
hello
stdout
Standard output is empty