University rating
Easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
To assess the performance of universities, we decided to compile a rating. The activity of the university is evaluated by an integer from to .
Count the number of universities with a positive rating, a negative rating, and a zero rating.
Input
The first line contains a positive integer — the number of universities.
The second line contains integers — the rating of the -th university.
Output
Print three numbers in one line:
the number of universities with a positive rating;
the number of universities with a negative rating;
the number of universities with a zero rating.
Examples
Input #1
Answer #1
Submissions 1K
Acceptance rate 70%