write a function that takes a list of integers and counts and prints the occurrences of each. write a main function that reads some integers between 1 and 100 and call the above function. do not use dictionary. here is a sample run: enter the integers between 1 and 100: 2 5 6 5 4 3 23 43 2 2 occurs 2 times 3 occurs 1 time 4 occurs 1 time 5 occurs 2 times 6 occurs 1 time 23 occurs 1 time 43 occurs 1 time