def max_pairwise_product(numbers): n=len(numbers) max_product=numbers[0] for first in range(0,n): for second in range(first + 1, n): max_product = max(max_pr