l = list(map(int, input().split())) l.sort() if l[0] * 2 < l[1]: print("No") else: print("Yes")