#include using namespace std; using ll = long long; int main() { int n,h; cin >> n >> h; vector t(n); for (int i = 0; i < n; i++) { cin >> t[i]; } for (int i = 0; i < n; i++) { cout << t[i]+h << " "; } cout << endl; }