#include #include using namespace std; typedef long long ll; int dice[6] = {1, 2, 3, 4, 5, 6}; int cheat[6] = {4, 4, 5, 5, 6, 6}; ll dp1[15][100], dp2[15][100]; int main(){ int N, K; cin >> N >> K; const int M = 6 * N; dp1[0][0] = 1; for(int i=0;i