2568: CTK14 数字字符的个数

Memory Limit:256 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

输入一个字符串,其中可能包含数字0~9和字母,输出数字字符的个数。

Input

输入:一个字符串,长度不超过20。

Output

输出:一个整数,为字符串中数字字符的个数。

Sample Input Copy

ABC123

Sample Output Copy

3

HINT