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