N = gets.to_i a = gets.split(" ").map{|s| s.to_i} a.sort!.reverse! sum = 0 0.upto(N-1) {|i| sum += a[2*i] * a[2*i+1] } puts sum