// Sky's the limit :) #include using namespace std; #define int long long signed main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int T = 1; // cin >> T; while (T--) { int n, k; cin >> n >> k; while (n--) { int x; cin >> x; cout << x + k << ' '; } } return 0; }