#Example of list comprehension
str=input("enter string:")
l=[i for i in str if i in ('a','e','i','o','u')]
print("number of vowels present in entered string:",len(l))
str=input("enter string:")
l=[i for i in str if i in ('a','e','i','o','u')]
print("number of vowels present in entered string:",len(l))