#include #include #include #include #include #include #include using namespace std; typedef long long ll; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, h; cin >> n >> h; for(int i = 0; i < n; i++){ int t; cin >> t; cout << h+t << ' '; } cout << endl; }