Help me in solving MARKSTW problem

My issue

cook your dish here

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

You cannot write (2Y) and expect the system to multiply it, you have to write the desired operation like (2 * Y).

Here is my code for reference.

# cook your dish here
x,y=map(int,input().split())
if(x>=(2*y)):
    print('yes')
else:
    print('no')