#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int a, b, c;
    cin >> a >> b >> c;
    cout << min(a * c, b) << endl;
    return 0;
}