Write a program that inputs two numbers and finds wether both are equal or not .
#include<iostream>
using namespace std;
int main()
{
int a,b;
cout<<"\t Equality Calculator "<<endl;
cout<<"\n";
cout<<"Enter the First Number"<<endl;
cin>>a;
cout<<"Enter the Second Number"<<endl;
cin>>b;
if (a==b)
{
cout<<"\n";
cout<<"The entered numbers are equal"<<endl;
}
else
{
cout<<"\n";
cout<<"The entered numbers are not equal"<<endl;
}
}