#include <iostream.h>
main( )
{
int a, b;
cout << "Enter first number" ;
cin >> a;
cout << "Enter Second number" ;
cin >> b;
if(a<b) cout << "First number is less than second
n";
if(a==b) cout << "First number is equal to second
n";
if(a>b) cout << "First number is greater than second
n";
if(a!=b) cout << "First number not equal to second
n";
return 0;
}