Select all inputs for which the code below prints the value `True`.
Each input is a sentence with a space between consecutive words, all of which are in lower case.
```
sentence = input()
space = " " # one space between the quotes
n = len(sentence)
# all letters in vowels are in lower case
vowels = 'aeiou'
surprise = True
for char in vowels:
if char not in sentence:
surprise = False
break
print(surprise)
```