N = int(input()) A = list(map(int, input().split())) A.sort() print(sum(A[2*i]*A[2*i+1] for i in range(N)))