a, b, c = map(int, input().split())
cnt = 0
for i in [a, b, c]:
if i % 2 == 0:
cnt += 1
print(cnt)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a, b, c = map(int, input().split())
cnt = 0
for i in [a, b, c]:
if i % 2 == 0:
cnt += 1
print(cnt)