#include<stdio.h>
#include<conio.h>
int main()
{
int a, b, c;
clrscr();
printf(“Enter three numbers : “);
scanf(“%d%d%d”,&a,&b,&c);
if(a>b &&a>c)
printf(“%d is the biggest\n”, a);
if(b>a &&b>c)
printf(“%d is the biggest\n”, b);
if(c>b &&c>a)
printf(“%d is the biggest\n”, c);
getch();
return 0 ;
}