#include #include #define rep(i, n) for (int i = 0; i < (n); i++) #define all(a) (a).begin(), (a).end() using namespace std; using namespace atcoder; typedef long long ll; typedef pair P; typedef pair Pll; typedef tuple Tll; template using min_priority_queue = priority_queue, greater>; const double PI = 3.14159265358979323846; int ddx[] = {1, -1, 0, 0, 1, 1, -1, -1}; int ddy[] = {0, 0, 1, -1, 1, -1, 1, -1}; int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; void cans(bool f) { if (f) cout << "Yes" << endl; else cout << "No" << endl; } template T gcd(T a, T b) { if (b == 0) return a; else return gcd(b, a % b); } bool compare1(pair a, pair b) { return a.first < b.first; } bool compare2(pair a, pair b) { return a.second < b.second; } long long modpow(long long a, long long n, long long mod = 998244353) { long long res = 1; while (n > 0) { if (n & 1) res = res * a % mod; a = a * a % mod; n >>= 1; } return res; } template bool chmax(T& a, const T& b) { if (a < b) { a = b; // aをbで更新 return true; } return false; } template bool chmin(T& a, const T& b) { if (a > b) { a = b; // aをbで更新 return true; } return false; } using mint = modint998244353; vector> G; vector dp; ll ans = 0; int dfs(int v, int pv) { bool f = true; int cnum = 1; for (auto nv : G[v]) { if (nv == pv) continue; cnum += dfs(nv, v); f = false; } if (f) return dp[v] = 1; return dp[v] = cnum; } int dfs2(int v, int pv) { int deg = 0; int cnum = 1; vector cnt; for (auto nv : G[v]) { if (nv == pv) continue; cnt.push_back(dfs(nv, v)); deg++; } sort(all(cnt), greater()); if (deg == 0) { return 1; } if (deg == 1) { return cnt[0] + 1; } else { return cnt[0] + cnt[1] + 1; } } int main() { int N; cin >> N; G.resize(N); dp.resize(N); rep(i, N - 1) { int u, v; cin >> u >> v; u--, v--; G[u].push_back(v); G[v].push_back(u); } dfs(0, -1); // rep(i, N) cout << dp[i] << " "; // cout << endl; cout << dfs2(0, -1) << endl; }