Problem2794--分别统计

2794: 分别统计

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 94  Solved: 79
[Status] [Submit] [Creator:]

Description

输入 n 个整数,统计其中奇数和偶数各有多少个。

Input

第一行,一个整数 n(1 ≤ n ≤ 1000)。  

第二行,n 个整数。每个整数均为不超过 1000 的正整数。  

Output

输出共一行,包含两个整数,以一个空格分隔,分别表示奇数的个数和偶数的个数。

Sample Input Copy

5
1 3 5 7 8

Sample Output Copy

4 1

Source/Category