#include <iostream>
using namespace std;
int main() {
int n;
cin>>n;
int ans[n];
int x, y;
int i=0;
int j;
bool first=true;
while(i<n){
if(first){
cin>>x>>y;
j=x;
first=false;
}
if(j%y==0){
cout<<j<<endl;
i++;
cin>>x>>y;
j=x;
}
else{
j++;
}
}
return 0;
}