#include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); unsigned int A, B, C; cin >> A >> B >> C; cout << min(A * C, B) << '\n'; return 0; }