| ASU Coding Cup 10 |
|---|
| Finished |
There are a lot of animals in ASZoo, and each kind of animal has a family.
There is $$$n$$$ kind of animals, each kind has $$$a_i$$$ family member, count how many animals in the Zoo.
The first line of input consists of a single integer $$$n$$$ ($$$1 \le n \le 100$$$).
The second line of input consists of $$$n$$$ integers $$$a_1, a_2, ... a_n$$$ ($$$1 \le a_i \le 100$$$).
Print the answer.
43 1 2 5
11
16
6
31 1 1
3
| Name |
|---|


