#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int a,b;//variable declaration
cout<<"Enter two numbers:";//prompt
cin>>a>>b;
if(a==b)
cout<<a<<"\n Both numbers are equal";
if(a>b)
cout<<a<<"\n is larger";
else
cout<<b<<"\n is larger";
getch();
}