#include<stdio.h>
int main()
{
    int num1,num2;
    printf("enter the two number");
    scanf("%d%d",&num1,&num2);
    if (num1>num2)
        printf("%d is larger tham %d\n",num1,num2);
    else if(num1<num2)
        printf("%d is larger than %d\n",num2,num1);
    else 
        printf("both num are equal");
    return 0;
}

Embed on website

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