An election is contested by 5 candidates. The candidates are numbered 1 to 5 and the voting is done by marking the candidate number on the ballot paper. Write a program to read the ballots and count the votes cast for each candidate using an array variable count. In case a number read is outside the range 1 to 5 ballot should be considered as a spoilt ballot and the program should also count the number of spoilt ballots Test Case 1 Input (stdin) 6 6 7 8 9 8 8 Expected Output Candidate 1=0 Candidate 2=0 Candidate 3=0 Candidate 4=0 Candidate 5=0 Spoil Ballot=6 Test Case 2 Input (stdin) 23 1 1 1 1 1 2 2 2 2 2 3 3 3 3 4 4 4 5 5 7 9 7 8 Expected Output Candidate 1=5 Candidate 2=5 Candidate 3=4 Candidate 4=3 Candidate 5=2 Spoil Ballot=4