3 lines
72 B
Python
3 lines
72 B
Python
ints = sorted(list(map(int, input().split())))
|
|
print(ints[0] * ints[2])
|
ints = sorted(list(map(int, input().split())))
|
|
print(ints[0] * ints[2])
|