If x is greater than y then prints following

 If x is greater than ythen  prints X>=Y else X<Y


    x=int(input())

    y=int(input())

    if(x>=y):

        print("X >= Y")

    else:

        print("X < Y")

Comments