Equal numbers or not in python

 Equal numbers or not in python:


    a=int(input())

    b=int(input())

    if(a==b):

        print("Equal")

    else:

        print("Not Equal")

Comments