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