#pragma GCC optimize("Ofast") #include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int q; q=1; while(q--){ int n; cin >> n; vector a(2*n); for(int i=0;i<2*n;i++){ cin >> a[i]; } sort(a.begin(), a.end()); ll res=0; for(int i=0;i