#include using namespace std; int main() { cin.tie(nullptr), ios::sync_with_stdio(false); long long N, K; cin >> N >> K; cout << K + 1 << ' ' << K * (N - 1 + K); for (int i = 2; i < N; i++) cout << ' ' << 1; cout << '\n'; }