#include <iostream>
using namespace std;
char line[400];
int main()
{
freopen("f:\\freopen.txt", "r", stdin);
cin.getline(line,300);
int total = 0;
for(int i = 0; line[i]; ++i) {
if( line[i] >= '0' && line[i] <= '9')
++ total;
}
cout << total;
return 0;
}
//0508 2019
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
char line[30000];
bool IsLetter(char c)
{
return c >= 'a'&& c <= &