Friendship Calculator

 vovel='aeiou'

Consonant='bcdfghjklmnpqrstvwxyz'

score=0

names=input("Enter both the names with space ")

for c in names:

    if c in vovel:

        score+=5

    if c in 'friends':

        score+=10

    if c in Consonant:

        score+=Consonant.find(c)

    else:

        score+=0

    


print("Score is ",score)