Help me in solving CARRYGOLD problem

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

you haven’t taken input for t in your test cases. You forgot to do cin >> t