#include<stdio.h>
#include<conio.h>
main()
{
int a,b,c,big;clrscr();
printf("\nEnter three Numbers\n");
scanf("%d%d%d",&a,&b,&c);
if(b>c)
big=b;
else
big=c;
if(a>b)
{
if(a>c)
big=a;
else
big=c;
}
else
printf("\nThe greatest of three numbers is %d",big);
getch();
}