#include #include #include #include #include #include #include #include #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; ll n; ll ch[100000]; vector g[100000]; bool used[100000]; ll ans; void dfs(int v){ used[v] = true; for(int to : g[v]){ if(!used[to]){ dfs(to); ans += (n-ch[to])*(ch[to]); ch[v] += ch[to]; } } ans += n; ch[v]++; ans += (n-ch[v])*ch[v]; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; cin >> n; for(int i = 0; i < n-1; i++){ int a, b; cin >> a >> b; a--; b--; g[a].push_back(b); g[b].push_back(a); } dfs(0); cout << ans << endl; }