比赛 20161115 评测结果 WWWWWWWWWW
题目名称 取石块儿 最终得分 0
用户昵称 Zwoi_John Price 运行时间 0.405 s
代码语言 C 内存使用 0.26 MiB
提交时间 2016-11-15 09:40:36
显示代码纯文本
#include<stdio.h>
int main()
{
	int n,i,k,m;
	freopen("tstones.in","r",stdin);
	freopen("tstones.out","w",stdout);
	
	scanf("%d",&m);
	for (i=1;i<=m;i++)
	{
		scanf("%d %d",&n,&k);
		if (n>=k) printf("YES\n");
		else printf("NO\n");
	}
	
	fclose(stdin);
	fclose(stdout);
	return 0;
}