`string` is a non-empty string. What does the following code print?
```
# Hint: char.isalpha() returns True if char is an alphabet
# it returns False otherwise
count = 0
for char in string:
if char in "aeiou":
count += 1
elif char.isalpha():
count -= -1
print(count)
```