#include using namespace std; typedef long long ll; const long long INF = 1LL<<60; const double PI = acos(-1.0); /*const double PI = atan2(0.0,-1.0)*/ template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } #define rep(i, n) for(ll i = 0; i < (ll)(n); i++) #define rep1(i,aa,n) for(ll i = aa; i <= (ll)(n); i++) #define ALL(a) (a).begin(),(a).end() #define ar_init(aa,val) rep(i,aa.size()) aa[i]=val; #define v2d(aa,val1,val2,ini) vector> aa(val1,vector(val2,ini)); #define pqe priority_queue #define pqeg priority_queue,greater> #define lcin(...) ll __VA_ARGS__;CINT(__VA_ARGS__) #define eout(...) COU(__VA_ARGS__); #define sout(...) SCOU(__VA_ARGS__); #define scin(...) string __VA_ARGS__;CINT(__VA_ARGS__) #define lb(aa,val) lower_bound(ALL(aa),val) #define pb push_back #define mkp make_pair ll kaijou(ll e){ll r=1;rep(i,e){r*=(i+1);}return r;} void CINT(){} template void CINT(Head&& head,Tail&&... tail){ cin>>head; CINT(move(tail)...); } void COU(){} template void COU(Head&& head,Tail&&... tail){ cout< void SCOU(Head&& head,Tail&&... tail){ cout< T IN(){T x;cin>>x;return (x);} using pii = pair; using v2 = vector>; using v1 = vector; using v2p = vector>; using v1p = vector; const ll mo=1000000007; //const ll mo=998244353; ll mod_pow(ll N,ll n){ if(n==0) return 1; ll pp,hh; pp=n/2; hh=n%2; int tt=mod_pow(N,n/2); if(hh==0)return tt%mo*tt%mo; else {return tt%mo*tt%mo*N%mo;} } vector ans(10000000,0); ll n,m; void dfs(ll ka,ll sum,vector aa,ll jo){ if(aa.size()==4){ aa.pb(-1); ll r=0; ll e=1; rep(i,4){ if(aa[i]==aa[i+1]){ r++; }else{ if(r)e*=kaijou(r+1); r=0; } } ans[sum]+=24/e; return ; } if(m>n>>m; v1 aa; dfs(0,0,aa,0); rep(i,n+1){ eout(ans[i]); } }