Relation between two numbers

 Relation between two numbers


    a=int(input())

    b=int(input())

    if(a>b):

        print("A > B")

    elif(a<b):

        print("A < B")

    else:

        print("A == B")

Comments