#include <stdio.h>

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

Embed on website

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