#include using namespace std; int main(){ int n;cin>>n; for(int i = 0; n > i; i++){ int a,b;cin>>a>>b; cout << a*b+b << endl; } }