a=text.split()
b={}
for?word?in?a:
b[word]=b.setdefault(word,0)+1
return?sorted(key?for?key?in?b?if?b[key]>=n)