100 #ABC210A. [ABC210A] Cabbages

[ABC210A] Cabbages

Score : 100100 points

Problem Statement

Takahashi is visiting a shop specializing in cabbage.

The shop sells cabbage for XX yen (Japanese currency) per head. However, if you buy more than AA heads of cabbage at once, the (A+1)(A+1)-th and subsequent heads will be sold for YY yen per head. (It is guaranteed that Y<XY \lt X. See Sample Input/Output 1 for clarity.)

Print the amount of money needed to buy NN heads of cabbage.

Constraints

  • 1N1051 \leq N \leq 10^5
  • 1A1051 \leq A \leq 10^5
  • 1Y<X1001 \leq Y \lt X \leq 100
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN AA XX YY

Output

Print the amount of money needed to buy NN heads of cabbage (as an integer).

5 3 20 15
90

You need to pay 2020 yen for each of the 11-st through 33-rd heads of cabbage, and 1515 yen for each of the 44-th and 55-th heads of cabbage. Thus, you need to pay a total of 20+20+20+15+15=9020+20+20+15+15 = 90 yen for the 55 heads of cabbage.

10 10 100 1
1000