#abc133a. [abc133_a]T or T
[abc133_a]T or T
Problem Statement
of us are going on a trip, by train or taxi.
The train will cost each of us yen (the currency of Japan).
The taxi will cost us a total of yen.
How much is our minimum total travel expense?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print an integer representing the minimum total travel expense.
Sample Input 1
4 2 9
Sample Output 1
8
The train will cost us yen, and the taxi will cost us yen, so the minimum total travel expense is yen.
Sample Input 2
4 2 7
Sample Output 2
7
Sample Input 3
4 2 8
Sample Output 3
8