My issue
output is not showing
My code
#include <bits/stdc++.h>
using namespace std;
void solve(){
int n,x,y;
cin>>n>>x>>y;
if(x<=n*y){
cout<<"YES"<<endl;
}
else{
cout<<"NO"<<endl;
}
}
int main() {
// your code goes here
int t;
while(t--){
solve();
}
}
Problem Link: Gold Mining Practice Coding Problem - CodeChef