#include using namespace std; using ll = long long; template using vec = vector; template using vvec = vector>; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N,H; cin >> N >> H; for(int i=0;i> t; cout << t+H << (i!=N-1? " ":"\n"); } }