#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr ();
printf("\nEnter Value of a");
scanf("\n%d",&a);
printf("\nEnter Value of b");
scanf("\n%d",&b);
if(a>b)
{
printf("\n a is greater");
}
getch();
}