Ответ:
a = int(input())
b = 0
while a>0:
if a%2==0:
b+=1
a = a // 10
print(b)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a = int(input())
b = 0
while a>0:
if a%2==0:
b+=1
a = a // 10
print(b)