(codeup) 2001 : 최소 대금

pasta1 = int(input())
pasta2 = int(input())
pasta3 = int(input())
juice1 = int(input())
juice2 = int(input())

costPasta=min(pasta1, pasta2, pasta3)
costJui = min(juice1, juice2)
result = (costPasta+costJui)*1.1
print ("%.1f"%result)

+ Recent posts