#include using namespace std; int main(){ int T; cin >> T; while(T--){ int A, B; cin >> A >> B; cout << B + A * B << endl; } }