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