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