My issue
My code
# cook your dish here
x,y=map(int,input().split())
if x>y and y<x:
print("YES")
else:
print("NO")
Problem Link: MARKSTW Problem - CodeChef
# cook your dish here
x,y=map(int,input().split())
if x>y and y<x:
print("YES")
else:
print("NO")
Problem Link: MARKSTW Problem - CodeChef
ALL TEST CASES PASS BUT FOURTH CASE NOT PASSING
x,y=map(int,input().split())
if x>=2*y:print(“yes”)
else:print(‘no’)