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