小美的外卖订单编号---牛客周赛 Round 11

小美的外卖订单编号---牛客周赛 Round 11_第1张图片

#include
using namespace std;
typedef long long ll;
const int N=1e5+5;
int t,n,m;
int main(){
	scanf("%d",&t);
	while(t--){
		scanf("%d%d",&n,&m);
		if(m%n==0) printf("%d\n",n);
		else printf("%d\n",m%n);
	}
	return 0;
}

你可能感兴趣的:(牛客,算法,c++,开发语言,数据结构)