본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 7130번 Milk and Honey

by 현장 2024. 2. 23.

-Code

m, h = map(int, input().split())
res = 0

for _ in range(int(input())):
    c, b = map(int, input().split())

    res += c * m if c * m > b * h else b * h

print(res)