#include <stdio.h>
int main()
{
int a,b;
printf ("enter the first number\n");
scanf("%d",&a);
printf ("enter the second number\n");
scanf("%d",&b);
if(a>b)
{ printf("%d",a);}
else;
{printf("%d",b);}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: