#include<stdio.h>
int main() {
	int t,c,k,w;
	scanf("%d",&t);
	while (t--) {
		scanf("%d%d%d",&c,&k,&w);
		if ((c * w) > k )printf("no\n");
		else printf("yes\n");
	}
	return 0;
}

Suggested Topics

Topic Category Replies Views Activity
C and C++ 0 17 9d

Want to read more? Browse other topics in C and C++ or view latest topics.