#include using namespace std; main() { int a, b, c; cin >> a >> b >> c; int a_fee = a * c; cout << min(a_fee, b) << endl; }