p, q = map(float, input().split()) if p*(2-q) > 1: print('YES') else: print('NO')