#include <iostream>
using namespace std;
int main()
{
int x,y;
cout<<"##### THE 0 OUTPUT SHOWS THE RESULT IS FALSE AND THE 1 SHOW THE RESULT IS TRUE ##### "<<endl;
cout<<"Enter the value of x and y: "<<endl;
cin>>x>>y;
cout<<"The Value of X is "<<x<<" And the Value of Y is "<<y<<endl;
cout<<"the operation X<Y is "<<(x<y)<<endl;
cout<<"the operation X>Y is "<<(x>y)<<endl;
cout<<"the operation X<=Y is "<<(x<=y)<<endl;
cout<<"the operation X>=Y is "<<(x>=y)<<endl;
cout<<"the operation X==Y is "<<(x==y)<<endl;
cout<<"the operation X!=Y is "<<(x!=y)<<endl;
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: