#include using namespace std; int main() { int A, B, C; cin >> A >> B >> C; if (A * C <= B) { cout << A * C << endl; } else { cout << B << endl; } }