//#define _GLIBCXX_DEBUG #include #define rep(i, n) for(int i=0; i; using vs = vector; using vi = vector; using vvi = vector; template using PQ = priority_queue; template using PQG = priority_queue, greater >; const int INF = 0xccccccc; const ll LINF = 922337203685477580LL; template inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true);} template inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true);} template istream &operator>>(istream &is, pair &p) { return is >> p.first >> p.second;} template ostream &operator<<(ostream &os, const pair &p) { return os << p.first << ' ' << p.second;} const int N = 2e5+10; //head int n; vi G[N]; ll ans[N]; int dfs(int i, int j) { int cnt = 1; ll res = 1; for(int ne:G[i]) if(ne != j) { int now = dfs(ne, i); res += (ll)now*cnt<<1; cnt += now; } ans[i] = res; return cnt; } int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n; rep(i, n-1) { int a, b; cin >> a >> b; a--; b--; G[a].emplace_back(b); G[b].emplace_back(a); } dfs(0, -1); rep(i, n) cout << ans[i] << '\n'; }