#include using namespace std; int main() { int n, x[10000], y[10000]; cin>>n; for(int i=0; i < n; i++) cin>>x[i]; for(int i=0; i < n; i++) cin>>y[i]; sort(x, x + n); sort(y, y + n, greater()); long long sum = 0; for(int i=0; i < n; i++) sum += (long long)x[i] * y[i]; cout<