#include<stdio.h>
int main ()
{
int a,b;
printf("Enter the value of a\n :");
printf("Enter the value of b\n :");
scanf("%d%d",&a,&b);
if(a>b)
{
printf("a");
}
else
{
printf("b");
}
return 0;
}
#include<stdio.h>
int main ()
{
int a,b;
printf("Enter the value of a\n :");
printf("Enter the value of b\n :");
scanf("%d%d",&a,&b);
if(a>b)
{
printf("a");
}
else
{
printf("b");
}
return 0;
}
0 Comments