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