greatest from three numbers

Share it Please
#include<stdio.h>
#include<conio.h>
main()
{
        int a,b,c;
        clrscr();
        printf("Enter a:");
        scanf("%d",&a);
        printf("\nEnter b:");
        scanf("%d",&b);
        printf("\nEnter c:");
        scanf("%d",&c);
        if((a>b)&&(a>c))
        {
                printf("\nA is greatest");
        }
        else if(b>c)
        {
                printf("\nB is greatest");
        }
        else
        {
                printf("\nC is greatest");
        }
        getch();
}