def lovely(ingrediants,inedible):
    #ing = ingrediants.split()
    #ine = inedible.split()
    
    total = 0
    for food in ingrediants.split():
        if food in inedible.split():
            pass
        else:
            total = total + 1
    return total
