-Code
nums = sorted(list(map(int, input().split())))
res = max(
nums[0] * nums[1] + nums[2],
nums[0] + nums[1] * nums[2]
)
print(res)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 6736번 The Idiot of the Year Contest! (0) | 2024.10.17 |
---|---|
[백준/파이썬] 4974번 ICPC Score Totalizer Software (0) | 2024.10.16 |
[백준/파이썬] 14729번 칠무해 (0) | 2024.10.14 |
[백준/파이썬] 14471번 포인트 카드 (1) | 2024.10.13 |
[백준/파이썬] 30306번 Better Dice (0) | 2024.10.12 |