0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:25:24 +00:00
OI-codes/AcWing/761/761.cpp

16 lines
225 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
char c;
int ans = 0;
while (cin >> c) {
if ('0' <= c && c <= '9') {
ans++;
}
}
cout << ans << endl;
return 0;
}