#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int N, M; cin >> N >> M; vector cnt(M + 1, 0); for (int i = 0; i < N; i++) { int x; cin >> x; if (x <= M) cnt[x]++; } for (int i = 0; i < M; i++) { cout << i + 1 << ' ' << cnt[i + 1] << '\n'; } return 0; }