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