//no-unlocked //interactive const int p[] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 27}; int @N; ll S = 1; rep(i, N) S *= p[i]; VLL ans; rep(i, N) ans.push_back(S / p[i]); wt(ans); /* */