PROGRAMMING:vote
Currently, the three candidates are "Li", "Zhang" and "fun". Input the name of the candidate who gets the vote each time, and finally output the result of each person's vote.
###Input format:
Input data for multiple groups, the first line of input n, followed by N lines to represent the name of the candidate. Read to end of file..
###Output format:
According to the order of Li, Zhang and fun, output the votes of each person.
###Input example:
Here is a set of inputs. For example:
```in
three
Li
Zhang
Fun
one
Li
```
###Output example:
The corresponding output is given here. For example:
```out
Li:1
Z hang:1
Fun:1
Li:1
Z hang:0
Fun:0
```
answer:If there is no answer, please comment
###Input format:
Input data for multiple groups, the first line of input n, followed by N lines to represent the name of the candidate. Read to end of file..
###Output format:
According to the order of Li, Zhang and fun, output the votes of each person.
###Input example:
Here is a set of inputs. For example:
```in
three
Li
Zhang
Fun
one
Li
```
###Output example:
The corresponding output is given here. For example:
```out
Li:1
Z hang:1
Fun:1
Li:1
Z hang:0
Fun:0
```
answer:If there is no answer, please comment