Problem W: 统计奇、偶数的个数(循环语句、if语句、整除求余运算)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:18 Solved:13

Description

对于输入的n个数,统计其中奇、偶数的个数。

Input

第一行:一个正整数n
第二行:n个数,数与数之间用一个空格分隔


Output

第一行:奇数的个数
第二行:偶数的个数

Sample Input Copy

7
1 9 2 4 7 8 100

Sample Output Copy

3
4

Source/Category