#include <stdio.h>

int main()
{
    int x,y;
    printf("enter the first number:\n");
    scanf("%d",& x);
    printf("enter the second number:\n");
    scanf("%d",& y);
    if(x>y)
    {
     printf("x grater than y");
    }
    else
    {
        printf("y is grater than x\n");
    }
}

Embed on website

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