https://www.acmicpc.net/problem/1037
n = int(input()) num = list(map(int, input().split())) print(max(num)*min(num))
가장 큰 값과 가장 작은 값을 곱하면 된다.