Help me in solving MARKSTW problem

My issue

X,Y=int(input().split())
if X>=2Y:
print(“YES”)
else:
print(“NO”)

My code

# cook your dish here
X,Y=int(input().split())
if X>=2Y:
    print("YES")
else:
    print("NO")
    
    

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

@arjuns0028
i have corrected your code

# cook your dish here

X,Y=map(int,input().split())

if X>=(2*Y):
    print("YES")
else:
    print("NO")