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