#include <stdio.h>

int main() {
    int  a,b;
    printf("enter two numbers: ");
    scanf("%d%d",&a,&b);
    if(a>b)
    {
        printf("\n%d is greater than %d",a,b);
    }
    else{
        printf("\n%d is greater than %d",b,a);
    }
    return 0;
}

Embed on website

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