#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 secondn";
if(a>b) cout << "First number is greater than secondn";
if(a!=b) cout << "First number not equal to secondn";
return 0;
}