#include<iostream.h>
#include<conio.h>
using namespace std;
int main ()
{
// Variable Declaration
int a = 25, b = 5;
//int a = 5, b = 25;
//int a = 5, b = 5;
cout << "Simple Relational Operator Example Program \n";
if( a>b )
cout<<"A is Big";
else if( a== b)
cout<<"A and B are Equal";
else
cout<<"B is Big";
// Wait For Output Screen
getch();
//Main Function return Statement
return 0;
}