Help me in solving MARKSTW problem

My issue

i need logic for this code

My code

# cook your dish here
x=input()
y=input()
if x<=2*y:
    print("Yes")
else:
    print("no")

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

@yaminin95
The logic is if x>=2*y then the answer would be “yes”.
else it would be “no”.