You can sort then uniq:
sort
uniq
$ sort -u input.txt
Or use awk:
awk
$ awk '!a[$0]++' input.txt
1.4m articles
1.4m replys
5 comments
57.0k users