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

[백준/파이썬] 28444번 HI-ARC=?

by 현장 2023. 8. 16.

-Code

h, i, a, r, c = map(int, input().split())

print(h * i - a * r * c)