def voc_count(s, sref):
    cnt = 0
    for c in s:
        if c.isalpha() and c in 'aeiou' and c not in sref: 
            cnt += 1
    return cnt
