You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
369 B

#include <bits/stdc++.h>
using namespace std;
const int N = 11;
int b[N];
int main() {
int m, n;
cin >> m >> n;
for (int x = m; x <= n; x++) {
int t = x;
while (t) {
int a = t % 10;
b[a]++;
t /= 10;
}
}
for (int i = 0; i <= 9; i++) cout << b[i] << " ";
return 0;
}