digits = input()
c = 0
for digit in digits:
if int(digit) < 5:
c += 1
print(c)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
digits = input()
c = 0
for digit in digits:
if int(digit) < 5:
c += 1
print(c)