#abc064c. [abc064_c]Colorful Leaderboard

[abc064_c]Colorful Leaderboard

Problem Statement

In AtCoder, a person who has participated in a contest receives a color, which corresponds to the person's rating as follows:

  • Rating 11-399399 : gray
  • Rating 400400-799799 : brown
  • Rating 800800-11991199 : green
  • Rating 12001200-15991599 : cyan
  • Rating 16001600-19991999 : blue
  • Rating 20002000-23992399 : yellow
  • Rating 24002400-27992799 : orange
  • Rating 28002800-31993199 : red

Other than the above, a person whose rating is 32003200 or higher can freely pick his/her color, which can be one of the eight colors above or not.
Currently, there are NN users who have participated in a contest in AtCoder, and the ii-th user has a rating of aia_i.
Find the minimum and maximum possible numbers of different colors of the users.

Constraints

  • 1N1001 ≤ N ≤ 100
  • 1ai48001 ≤ a_i ≤ 4800
  • aia_i is an integer.

Input

Input is given from Standard Input in the following format:

NN a1a_1 a2a_2 ...... aNa_N

Output

Print the minimum possible number of different colors of the users, and the maximum possible number of different colors, with a space in between.


Sample Input 1

4
2100 2500 2700 2700

Sample Output 1

2 2

The user with rating 21002100 is "yellow", and the others are "orange". There are two different colors.


Sample Input 2

5
1100 1900 2800 3200 3200

Sample Output 2

3 5

The user with rating 11001100 is "green", the user with rating 19001900 is blue and the user with rating 28002800 is "red".
If the fourth user picks "red", and the fifth user picks "blue", there are three different colors. This is one possible scenario for the minimum number of colors.
If the fourth user picks "purple", and the fifth user picks "black", there are five different colors. This is one possible scenario for the maximum number of colors.


Sample Input 3

20
800 810 820 830 840 850 860 870 880 890 900 910 920 930 940 950 960 970 980 990

Sample Output 3

1 1

All the users are "green", and thus there is one color.