n = int(input()) A = list(map(int, input().split())) A.sort() ans = 0 for i in range(n): ans += A[2*i]*A[2*i+1] print(ans)