#include using namespace std; template inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template inline void chmax(T1 &a,T2 b){if(a vector read(size_t n){ vector ts(n); for(Int i=0;i<(Int)n;i++) cin>>ts[i]; return ts; } //INSERT ABOVE HERE signed main(){ cin.tie(0); ios::sync_with_stdio(0); Int n,m; cin>>n>>m; auto ls=read(n); vector cnt(m+1,0); for(Int l:ls) if(l<=m) cnt[l]++; for(Int i=1;i<=m;i++) cout<