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
368 B

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