#include <stdio.h>

int main() {
    int x,y;
    printf("enter two digit for greater check:\n");
    scanf("%d%d",&x,&y);
    if(x>y)
    printf("\n big=%d",x);
    else
    printf("\n big=%d",y);
    return 0;
}

Embed on website

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