Write a program to compute the number of times each different 2-letter pair occurs in the input file. Find the ten pairs which occur most frequently, and print one line for each such pair. Each line should contain the pair of letters, a tab, and the number of occurrences of that pair. Is it possible to avoid the complexity of the hash table, or a similar search table for this job? Submit the program as “P7”.