A programmming contest was organised between two universities, Elm and Oak. There were n participants from Elma and m participants from Oak. Points scored by the participants were arranged in descending order and are to be sent to judges in a different location. Write a program to read the scores recieved from Elm and Oak. The program should generate a consolidated list in descending order of the scores from the input recieved. As the lists recieved are already sorted, it is recomended not to use any sorting algorithm while generating the consolidated list.
Scores of 9(n) participants of Scores of 12(m) participants of Oak
Elm
92 86
90 85
89 84
89 84
82 84
80 82
74 81
70 81
65 80
80
79
78
Combined score list: 92, 90, 89, 89, 86, 85, 84, 84, 84, 82,82, 81, 81, 80, 80, 80, 79, 78,74, 70, 65.