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