a = int(raw_input()) b = int(raw_input()) c = int(raw_input()) x = (a+b-1) / b y = (a+c-1) / c if x * 2 >= y * 3: print 'YES' else: print 'NO'