33日目



--------------------------------------------🤞 My Solution -------------------------------------------
def wrap(height, width, length):
    arr = [height, width, length]
    first = max(arr)
    arr.remove(first)
    second = max(arr)
    arr.remove(second)
    third = arr[0]
    total = first * 2 + second * 2 + third * 4 + 20
    return total