파이썬/코딩테스트
[백준] 거북이 - Python(파이썬)
대전집주인
2024. 3. 23. 16:16
728x90
SMALL
# 2959 백준)파이썬 거북이
x = list(map(int, input().split()))
x.sort(reverse=True)
print(x[1] * x[3])
728x90
LIST