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