Answer:
input two numbers x and y
Step-by-step explanation:
#include <iostream.h>
# include <conio.h>
int main ()
{
int x , y;
cout<<"Enter first number ";
cin>> x;
cout<<"Enter second number";
cin>>y;
if (x > y)
cout<<"The number is ="<< x;
else
cout << "The number is =" <<y;
getch();
}