def scientific(text, d_animals):
    text2 = []
    for word in text.split():
        text2.append(word)
        if word in d_animals:
            text2.append( "(" + d_animals[word] + ")" )
    return ' '.join(text2)
