#include <stdio.h>
int main() 
{
int a,b,c;
printf ("enter the first number\n");
scanf("%d",&a);
printf ("enter the second number\n");
scanf("%d",&b);
printf ("enter the third umber\n");
scanf("%d",&c);
 if(a>b && a>c)
    { 
        printf("%d",a);
    }
    else if(b>c && b>a)
        {
            printf("%d",b);
        }
    else 
    {
        printf("%d",c);
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: