Help me in solving PYPRACMCQ6 problem

My issue

when she is happy and i hope option 2 is correct one

Learning course: Practice Python
Problem Link: CodeChef: Practical coding for everyone

I got it

@chethanapatnam

Correct Answer(s):

Option 1
Option 3
Explanation:
if (X >= 2*Y):
    print("YES")

and 

if (2*Y <= X):
    print("YES")

are the same.