おつりの最小枚数
arthur
ヨワモンの部屋
N 個の整数が与えられます。
その中に含まれる偶数の個数を数えてください。
N
A1 A2 ... AN
偶数の個数を出力してください。
5
1 2 3 4 5
2
n = int(input())
A = list(map(int, input().split()))
count = 0
for x in A:
if x % 2 == 0:
count += 1
print(count)