#include <stdio.h>

int main()
{
    int a,b;
    scanf("%d",&a);
    scanf("%d",&b);
    if (a==b)
    {
        printf("%d is equal to %d",a,b);
    }
    else if (a>b)
    {
        printf("%d is greater than %d",a,b);
    }
    else
    {
        printf("%d is less than %d",a,b);
    }
    return 0;
}

Embed on website

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