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