Program to accept two integers and check whether they are equal or not.
#include<iostream.h>
void main( )
using namespace std;
int main( )
{
int num1, num2;
cout<< " Input the values for number1 and number2: " ;
cin>> num1 >> num2;
if (num1 == num2)
{
cout<< " Both numbers are equal";
}
else
{
cout<< " numbers are not equal" ;
}
}