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