What you are doing in your if statement is checking if first == "a" is true and then if "e" is true, which it always is, so the if statement always evaluates to true.
What you should do instead is:
if first == "a" or first == "e" ...
or better yet:
if first in "aeiou":