#include
<stdio.h> |
void
main() |
{ |
int x,y; |
printf("Enter Two Number : "); |
scanf("%d%d",&x,&y); |
if(x>y) |
{ |
printf("\n%d is Greatest
Number ",x); |
} |
if(x<y) |
{ |
printf("\n%d is Greatest
Number ",y); |
} |
} |