#include <stdio.h>

int main() {
    int x,y,big;
    printf("\nenter any two no to check greater no:");
    scanf("%d%d",&x,&y);
    x>y ? printf("\n big=%d",x) : 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: