#include using namespace std; int main(){ int N, H; cin >> N >> H; while(N--){ int T; cin >> T; cout << T + H << ' '; } }