Help me in solving NEWCC problem

My issue

it is showing correct answer when i run but after submitting it is showing wrong answer . why?

My code

# cook your dish here
X,Y=map(int,input().split())
if(X<Y):
    print("Old")
else:
    print("New")

Problem Link: All New CodeChef Practice Coding Problem - CodeChef

your logic is wrong ,ex:100 100 it should be “same” not “new”.