City of Stars Berapa banyak kata dalam kode Python Song

# Read the input
s = input()

words = str.split(s, ' ')

count = 0

for i in words:
    if(i[0] in 'aeiouAEIOU'):
        count += 1

print(count)
django