#include using namespace std; typedef long long ll; int main() { int n, h; cin >> n >> h; for (int i = 0; i < n; ++i) { int t; cin >> t; cout << t + h; if (i == n - 1) puts(""); else cout << ' '; } return 0; }