Any questions do not hesitate to contact.
#include <bits/stdc++.h>
using namespace std;
int main(){
int cases; scanf("%d",&cases);
while(cases--){
int c,n; scanf("%d %d",&c,&n);
int maximo =n/(c-1)+n;
int minimo = maximo;
while(((minimo-1)-((minimo-1)/c))==n)
minimo--;
printf("%d %d\n", minimo,maximo);
}
return 0;
}
Keep in touch with Isaac Lozano Osorio!