27 Program to check whether 2 no's are equal or not in Python Atharva Satyendra Agrawal March 26, 2020 Atharva Satyendra Agrawal Program: #program to check whether 2 no's are equal or not x=int(input("Enter value of x:")) y=int(input("enter value of y:")) if(x-y==0): print("No's are equal") else: print("unequal") Output: Tweet Share Share Share Related Post