5
Thu Sep 26 2024 00:42:22 GMT+0000 (Coordinated Universal Time)
Saved by
@JC
input_nums=list(map(int,input("Enter the numbers separated by space:").split()))
input_nums.sort(reverse=True)
max_product=input_nums[0]*input_nums[1]
print("Maximum Product:",max_product)
content_copyCOPY
Comments