int main()
{
int x,y;
cout<<"\nthe first number";
cin>>x;
Cout<<"\n the second number";
Cin>>y;
if (x==y){
cout<<"x is equal to y";
else if (x!=y)
cout<<"x is not equal to y";
if (x
else if (x<=y)
cout<<"x is less than or equal to y";
if (x>y)
cout<<"x is greater than to y";
else if (x>=y)
cout<<"x is greater than or equal to y";
}
}