Files
python/TangDou/XiTi/1070.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

25 lines
416 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int a[11] = {0};
int M;
cin>>M;
for (int i = 0; i < M; ++i) {
int c;
cin >> c;
a[c]++;
}
for (int i = 0; i < 10; ++i) {
cout << i + 1 << " ";
}
cout << endl;
for (int i = 0; i < 10; ++i) {
cout << a[i + 1] << " ";
}
cout << endl;
return 0;
}