Read n integers. Print count of even and odd numbers.
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
5 1 2 3 4 5
Output
Even: 2 Odd: 3