string = 'Sayan'
viowels = 'aeiou'
count=0
for items in range(len(string)):
if string[items].lower() not in viowels and string[items].isalpha:
count+=1
print(count)
string = 'Sayan'
viowels = 'aeiou'
count=0
for items in range(len(string)):
if string[items].lower() not in viowels and string[items].isalpha:
count+=1
print(count)