Write a program that reads integer, finds the largest of them, and counts its occurrences. Assume thant the input ends with number 0. suppose that you entered 3 5 3 5 5 5 0; program finds that largest is 5 and the occurrence count for 5 is 4. (hint : Maintain two variable max and count, max stores its occurrences. intially, assign the first number to max and reset count to 1. If the number is equal max, increment count by 1 )