문제
n = int(input()) arr = list(map(int, input().split())) arr.sort() num = arr[0] * arr[-1] print(num)