#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int n, h, t; cin >> n >> h; for (int i = 0; i < n; i++) { cin >> t; cout << t + h << ' '; } cout << '\n'; return 0; }