Task Description
輸入5個整數,計算並輸出偶數和奇數的個數
Input Format
輸入5個整數(換行輸入)
Output Format
先輸出偶數個數:
再輸出奇數個數:
(換行輸出)
Sample Input
5
4
3
2
1
Sample Output
偶數個數: 2
奇數個數: 3
Sample Input
2
4
6
8
10
Sample Output
偶數個數: 5
奇數個數: 0