➽ Program:-

x,y = map(int,input("Enter the Values of X and Y: ").split())

if(x==y):

    print("X and Y are Equal")

else:

    print("X and Y are not Equal")

➽ 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