//Downloaded From theonlinetutorials.com
#include<iostream.h>
#include<conio.h>
void main()
{
int x,y;
cout<<" Enter values for x and y: ";
cin>>x>>y;
if (x>y)
cout<<"x is big";
if (y>x)
cout<<"y is big";
getch();
}
Output
Enter values for X and y : 10 20
y is big
Enter values for x and y : 20 10
x is big
Not Satisfied ? Just search & get the result
Related posts:
