1598: L1-022. 奇偶分家
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:2
Solved:2
Description
给定N个正整数,请统计奇数和偶数各有多少个?
Input
输入第一行给出一个正整N(<= 1000);第2行给出N个正整数,以空格分隔。
Output
在一行中先后输出奇数的个数、偶数的个数。中间以1个空格分隔。
Sample Input Copy
9
88 74 101 26 15 0 34 22 77
Sample Output Copy
3 6