下列代码的输出是__________。
import re
line ='Cats are smarter than dogs'
mathcObj = re.match(r'(.*)are(.*?).*',line)
print(mathcObj .group(1))