#Find out the 15th most frequent word and its frequency. Print both on the screen.
import pprint
abc = open("ABC_Code_of_Conduct.txt", "r")
for item in umb: count_list.append((abc[item],item))
count_list.sort(reverse = True)
print(count_list[0])
print(count_list[14])