takes two number and find whether both are equal or not
Answers
Answered by
0
Answer:
Programming Language: Python
a = int(input("Enter The First Number"))
b = int(input("Enter The Second Number"))
if a == b:
print ("They are equal")
else:
print ("They are unequal")
Similar questions