fork download
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int t;
  8. cin>>t;
  9. while(t--) {
  10. int l,d,h;
  11. cin>>l>>d>>h;
  12. if(l*h>=d) {
  13. cout<<"Yes\n";
  14. } else {
  15. cout<<"No\n";
  16. }
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 15232KB
stdin
2
100 250 2
72 123 3
stdout
No
Yes