#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; vector X(N); int tot = 0; for (int i = 0; i < N; i++) { cin >> X[i]; tot += X[i]; } for (int i = 0; i < N; i++) { cout << (100 * N - tot + N * X[i]) / (2 * N) << '\n'; } return 0; }