p

subhamsingh · April 27, 2023
def comp(a,b):
if a = = b:
    return true 
    return false 
    
    x= int(input("Enter the 1 st n.o"))
    x= int(input("Enter the 2 nd n.o"))
    
    result =  comp(x,y)
    if result == true:
    print ("the n,o is equal ")
    else:
    print ("not equal")
    
Output

Comments

Please sign up or log in to contribute to the discussion.