Help me in solving READPAGES problem

My issue

My code

#include <iostream>
using namespace std;

int main() 
{
    int t;
    cin >> t;
    while(t--)
    {
        int n;
        cin>>n;
        int x,y;
        if (n<=x*y){
            cout<<"No"<<endl;
            
        }
        else{
            cout<<"yes"<<endl;
        }
    }

	return 0;
}

Problem Link: READPAGES Problem - CodeChef

@venkateshgowni
you have forgotten to input the values of x and y.
Also the if statement, must be changed to
if((x*y)>=n)
cout<<“YES”<<endl;
else
cout<<“NO”<<endl;