양념과 후라이드를 각각 한마리씩 사는 것과 반반 2개를 사는 것 중 어느 것이 더 저렴한지 계산
최소 수량에 딱 맞게 사는 것과 최소 수량 중 더 많은 쪽에 맞춰서 사는 것 중 어느 것이 더 저렴한지 계산
코드
a, b, c, x, y =map(int,input().split())
both_min =min(a+b, c+c)
common =min(x, y)
price1 = both_min * common + a *(x-common)+ b *(y-common)
price2 = both_min *max(x, y)print(min(price1, price2))