Run ID:115919
提交时间:2025-04-05 16:23:27
s = input() count = 0 for c in s: if c.isdigit(): count += 1 print(count)