#include #define rep(i, n) for(ll i=0; i<(n); ++i) #define rep1(i,n) for(ll i=1; i<=(n); ++i) #define repi(i,a,b) for(ll i=a; i<=(b); ++i) #define rrep(i,n) for(ll i=(n-1); i>=0; --i) #define ITR(itr,mp) for(auto itr = (mp).begin(); itr != (mp).end(); ++itr) #define ALL(obj) (obj).begin(), (obj).end() #define RALL(obj) (obj).rbegin(), (obj).rend() #define pb push_back #define mp make_pair #define to_s to_string #define sz(v) (int)v.size() #define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() ) #define print(x) cout<<(x)<<'\n' #define debug(x) cout << #x << ": " << (x) << '\n' using namespace std; using ll = long long; using Edge = pair; using Graph = vector>; typedef pair P; struct aaa{aaa(){ cin.tie(0); ios::sync_with_stdio(0); cout<> N; ll sum = 0; vector y(N); rep(i,N) cin >> y[i], sum += y[i]; rep(i,N) cout << sum - (N-1)*y[i] << " "; return 0; }