// // Validator 1.0 // #include "testlib.h" #include using namespace std; using ll = long long; using ull = unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) int main(){ registerValidation(); int d = inf.readInt(0,10000); inf.readEoln(); int a = inf.readInt(0,1000); inf.readChar(' '); int b = inf.readInt(0,1000); inf.readEoln(); inf.readEof(); int ans = min(a*d,b*d); cout << ans << "\n"; return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ ios::sync_with_stdio(false); cin.tie(nullptr); } } ios_do_not_sync_instance;