#include using namespace std; #ifndef ONLINE_JUDGE #include "debug.h" #else #define debug(...) (void)20240209 #endif int main() { cin.tie(nullptr)->sync_with_stdio(false); cout << fixed << setprecision(20); int a, b, c; cin >> a >> b >> c; cout << min(a * c, b); }