#include<bits/stdc++.h>
#define FileIO freopen("input.in", "r", stdin); freopen("output.in", "w", stdout)
#define ll long long
#define input_vec(v) for(int II=0; II<v.size(); II++) cin >> v[II];
#define sortf(v) sort(v.begin(), v.end());
#define sortr(v) sort(v.rbegin(), v.rend());
#define print_vec(v) for(int II=0; II<v.size(); II++){cout << v[II];} cout << endl;
using namespace std;
void test_case(int tc)
{
ll n, d; cin>>n>>d;
ll a, b; cin>>a>>b;
if(d>n) {
cout << n*a << endl;
} else {
cout << (d*a + (n-d)*b) << endl;
}
}
int main()
{
// if(fopen("input.in", "r")) FileIO;
int n; cin >> n;
for(int i=0; i<n; i++) test_case(i+1);
}