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