➽ Program:-

#include<stdio.h>

int main()

{

    int x, y;

    printf("Enter the Values of X and Y: ");

    scanf("%d %d", &x, &y);

   

    if(x == y)

        printf("X and Y are Equal\n");

    else

        printf("X and Y are not Equal");

    return 0;

}

➽ Output:-

Enter the Values of X and Y: 7 7
X and Y are Equal

Enter the Values of X and Y: 4 9
X and Y are not Equal