G. Выражение

public
yeskendir.sultanov Apr 26, 2024 Never 43
Clone
1
a = int(input())
2
b = int(input())
3
c = int(input())
4
d = [(a + b + c), (a + b) * c, a * (b + c), a * b * c]
5
print(max(d))