Inputs 5 5 Output Equal If the given number are equal print "Equal". In all other cases, print "not equal"
num1 = int(input()) num2 = int(input()) if num1 == num2: print("Equal") else: print("not equal")
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment