#include<stdio.h>
void main()
{
int a,b;
printf("enter the number a and b);
scanf ("%d%d",&a,&b);
if(a<b)
printf("b is greater than a\n");
else
printf("a is greater than b\n");
}

Posted on by