#include using namespace std; #define rep(i,N) for(int i=0;i> N >> H; rep(i, N){ int a; cin >> a; a += H; cout << a << " "; } cout << endl; }