#include using namespace std; void solve() { int a, b, c; cin >> a >> b >> c; cout << min(b, a*c) << endl; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(15); int T = 1; // cin >> T; while (T--) solve(); }