a,b = map(int,input().split(' ')) if 2*a < b or 2*b < a: print('No') else: print('Yes')