N=int(input()) A=list(map(int,input().split())) A.sort() ANS=0 while A: x=A.pop() y=A.pop() ANS+=x*y print(ANS)