100 atcoder#ABC133A. [ABC133A] T or T

[ABC133A] T or T

Score : 100100 points

Problem Statement

NN of us are going on a trip, by train or taxi.

The train will cost each of us AA yen (the currency of Japan).

The taxi will cost us a total of BB yen.

How much is our minimum total travel expense?

Constraints

  • All values in input are integers.
  • 1N201 \leq N \leq 20
  • 1A501 \leq A \leq 50
  • 1B501 \leq B \leq 50

Input

Input is given from Standard Input in the following format:

NN AA BB

Output

Print an integer representing the minimum total travel expense.

4 2 9
8

The train will cost us 4×2=84 \times 2 = 8 yen, and the taxi will cost us 99 yen, so the minimum total travel expense is 88 yen.

4 2 7
7
4 2 8
8