// In the name of Allah #include <bits/stdc++.h> using namespace std; #define endl "n" int32_t main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif ios_base::sync_with_stdio(0); cin.tie(0); /* int t; cin>>t; while(t--){ long long n; cin>>n; vector<long long >v(n); for(int i=0; i<n; i++){ cin>>v[i]; } sort(v.begin(),v.end()); long long mid,cnt=0; mid = (n-1)/2; for(int i=mid; i<n; i++){ if(v[mid] == v[i]){ cnt++; }else{ break; } } cout<<cnt<<endl; } */ return 0; }