← Back to List

32498번: Call for Problems ↗

Solutions

Python 3
67 B | 67 chars
n = int(input())
print(sum([(int(input()) % 2) for _ in range(n)]))