8.19 lab*: program: soccer team roster (dictionaries) this program will store roster and rating information for a soccer team. coaches rate players during tryouts to ensure a balanced team. (1) prompt the user to input five pairs of numbers: a player's jersey number (0 - 99) and the player's rating (1 - 9). store the jersey numbers and the ratings in a dictionary. output the dictionary's elements with the jersey numbers in ascending order (i.e., output the roster from smallest to largest jersey number). hint: dictionary keys can be stored in a sorted list. (3 pts) ex: enter player 1's jersey number: 84 enter player 1's rating: 7 enter player 2's jersey number: 23 enter player 2's rating: 4 enter player 3's jersey number: 4 enter player 3's rating: 5 enter player 4's jersey number: 30 enter player 4's rating: 2 enter player 5's jersey number: 66 enter player 5's rating: 9 roster jersey number: 4, rating: 5 jersey number: 23, rating: 4 jersey number 30, rating: 2 ...