#include<bits/stdc++.h> using namespace std; int main() { long long n,a,b; cin>>n>>a>>b; if(n*a<=b) cout<<n*a; else cout<<b; return 0; }