// Update the code below to solve this problem
#include <iostream>
#include <string>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int N,M,K;
cin>>N>>M>>K;
}
return 0;
}
int main()
{
int T;//no of test case
cin>>T;
while(T–)
{
int N;//no of loaves of bread
int M;//no of days after the bread will expire
int K;//no of loaves of bread eikooc can eat in a day
cin>>N>>M>>K;
if(M*K>=N){
cout<<“Yes”<<endl;
}
else{
cout<<“No”<<endl;
}
}
return 0;
}